Initial Upload

This commit is contained in:
Matt Batchelder
2025-12-02 10:32:59 -05:00
commit 05ce0da296
2240 changed files with 467811 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<?php
/*
* Spring Signage Ltd - http://www.springsignage.com
* Copyright (C) 2018 Spring Signage Ltd
* (DropPlayerCacheTask.php)
*/
namespace Xibo\XTR;
/**
* Class DropPlayerCacheTask
* @package Xibo\XTR
*/
class DropPlayerCacheTask implements TaskInterface
{
use TaskTrait;
/** @inheritdoc */
public function setFactories($container)
{
// Nothing needed here
return $this;
}
/** @inheritdoc */
public function run()
{
$this->pool->deleteItem('display');
}
}