1 | <?php |
||
33 | trait DefaultSessionAwareTrait |
||
34 | { |
||
35 | /** |
||
36 | * @var SessionInterface |
||
37 | * @access private |
||
38 | * @staticvar |
||
39 | */ |
||
40 | private static $default_session; |
||
41 | |||
42 | /** |
||
43 | * {@inheritDoc} |
||
44 | */ |
||
45 | public static function setDefaultSession(SessionInterface $session = null) |
||
49 | |||
50 | /** |
||
51 | * {@inheritDoc} |
||
52 | */ |
||
53 | public static function getDefaultSession()/*# : SessionInterface */ |
||
63 | } |
||
64 |