| 1 | <?php |
||
| 21 | final class PsyshFacade implements ContainerAwareInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var Shell |
||
| 25 | */ |
||
| 26 | private static $shell; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var ContainerInterface|null |
||
| 30 | */ |
||
| 31 | private static $container; |
||
| 32 | |||
| 33 | public static function init() |
||
| 45 | |||
| 46 | public static function debug(array $variables = [], $bind = null) |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @inheritdoc |
||
| 57 | */ |
||
| 58 | public function setContainer(ContainerInterface $container = null) |
||
| 62 | } |
||
| 63 |