| 1 | <?php |
||
| 8 | class Container extends AbstractContainer |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var \Psr\Log\LoggerInterface |
||
| 12 | */ |
||
| 13 | protected $logger; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Create a new SimpleSAMLphp compatible container. |
||
| 17 | */ |
||
| 18 | public function __construct() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | public function getLogger() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | public function generateId() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | public function debugMessage($message, $type) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritdoc} |
||
| 49 | */ |
||
| 50 | public function redirect($url, $data = array()) |
||
| 54 | |||
| 55 | /** |
||
| 56 | * {@inheritdoc} |
||
| 57 | */ |
||
| 58 | public function postRedirect($url, $data = array()) |
||
| 62 | } |
||
| 63 |