芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/cms.mgaplay.com.br/lib/Event/PlaylistMaxNumberChangedEvent.php
. */ namespace Xibo\Event; class PlaylistMaxNumberChangedEvent extends Event { public static $NAME = 'playlist.max.item.number.change.event'; /** @var int */ private $newLimit; public function __construct(int $newLimit) { $this->newLimit = $newLimit; } public function getNewLimit(): int { return $this->newLimit; } }