szurubooru/src/ControllerRepository.php
2014-10-18 18:48:16 +02:00

17 lines
251 B
PHP

<?php
namespace Szurubooru;
class ControllerRepository
{
private $controllers = [];
public function __construct(array $controllers)
{
$this->controllers = $controllers;
}
public function getControllers()
{
return $this->controllers;
}
}