szurubooru/src/ControllerRepository.php

18 lines
251 B
PHP
Raw Normal View History

2014-08-30 15:04:33 +02:00
<?php
namespace Szurubooru;
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;
}
}