| Total Complexity | 3 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class action_handler |
||
| 15 | { |
||
| 16 | /** @var Container */ |
||
| 17 | protected $phpbb_container; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Constructor |
||
| 21 | * |
||
| 22 | * @param Container $phpbb_container Service container |
||
| 23 | */ |
||
| 24 | public function __construct(Container $phpbb_container) |
||
| 25 | { |
||
| 26 | $this->phpbb_container = $phpbb_container; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $mode topic|type |
||
| 31 | * @param string $action |
||
| 32 | * @return \blitze\content\services\actions\action_interface |
||
| 33 | * @throws \blitze\sitemaker\exception\out_of_bounds |
||
| 34 | */ |
||
| 35 | public function create($mode, $action) |
||
| 47 | } |
||
| 48 | } |
||
| 49 |