1 | <?php |
||
7 | class ShibbolethExtension extends \Twig_Extension implements \Twig_Extension_GlobalsInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var ShibbolethServiceProvider |
||
11 | */ |
||
12 | protected $shibbolethServiceProvider; |
||
13 | |||
14 | /** |
||
15 | * @var array |
||
16 | */ |
||
17 | protected $impersonateUsers; |
||
18 | |||
19 | /** |
||
20 | * @param ShibbolethServiceProvider $shibbolethServiceProvider |
||
21 | */ |
||
22 | public function __construct(ShibbolethServiceProvider $shibbolethServiceProvider) |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getName() |
||
34 | |||
35 | /** |
||
36 | * @return array |
||
37 | */ |
||
38 | public function getGlobals() |
||
42 | } |
||
43 |