forkbb/app/Models/Action.php
2023-04-27 22:48:04 +07:00

33 lines
612 B
PHP

<?php
/**
* This file is part of the ForkBB <https://github.com/forkbb>.
*
* @copyright (c) Visman <mio.visman@yandex.ru, https://github.com/MioVisman>
* @license The MIT License (MIT)
*/
declare(strict_types=1);
namespace ForkBB\Models;
use ForkBB\Core\Container;
use ForkBB\Models\Manager;
class Action
{
protected Manager $manager;
public function __construct(protected Container $c)
{
}
/**
* Объявление менеджера
*/
public function setManager(Manager $manager): Action
{
$this->manager = $manager;
return $this;
}
}