This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/src/ControllerRepository.php
2014-10-18 18:48:15 +02:00

18 lines
289 B
PHP

<?php
namespace Szurubooru;
final class ControllerRepository
{
private $controllers = [];
public function __construct(
\Szurubooru\Controllers\AuthController $auth)
{
$this->controllers = func_get_args();
}
public function getControllers()
{
return $this->controllers;
}
}