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,33 @@
<?php
namespace Xibo\Event;
use Xibo\Entity\Connector;
use Xibo\Service\ConfigServiceInterface;
class ConnectorDeletingEvent extends Event
{
public static $NAME = 'connector.deleting.event';
/** @var \Xibo\Entity\Connector */
private $connector;
/** @var ConfigServiceInterface */
private $configService;
public function __construct(Connector $connector, ConfigServiceInterface $configService)
{
$this->connector = $connector;
$this->configService = $configService;
}
public function getConnector(): Connector
{
return $this->connector;
}
public function getConfigService(): ConfigServiceInterface
{
return $this->configService;
}
}