2014-08-30 15:04:33 +02:00
|
|
|
<?php
|
|
|
|
namespace Szurubooru;
|
|
|
|
|
2014-08-31 16:56:00 +02:00
|
|
|
class ControllerRepository
|
2014-08-30 15:04:33 +02:00
|
|
|
{
|
|
|
|
private $controllers = [];
|
|
|
|
|
2014-08-31 13:34:31 +02:00
|
|
|
public function __construct(array $controllers)
|
2014-08-30 15:04:33 +02:00
|
|
|
{
|
2014-08-31 13:34:31 +02:00
|
|
|
$this->controllers = $controllers;
|
2014-08-30 15:04:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getControllers()
|
|
|
|
{
|
|
|
|
return $this->controllers;
|
|
|
|
}
|
|
|
|
}
|