@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | /** |
84 | 84 | * Get an array of Laravel tailored casters. |
85 | 85 | * |
86 | - * @return array |
|
86 | + * @return callable[] |
|
87 | 87 | */ |
88 | 88 | protected function getCasters() |
89 | 89 | { |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | /** |
98 | 98 | * Get artisan commands to pass through to PsySH. |
99 | 99 | * |
100 | - * @return array |
|
100 | + * @return \Symfony\Component\Console\Command\Command[] |
|
101 | 101 | */ |
102 | 102 | protected function getCommands() |
103 | 103 | { |
@@ -65,7 +65,7 @@ |
||
65 | 65 | */ |
66 | 66 | public function getShell() |
67 | 67 | { |
68 | - if (! $this->shell) { |
|
68 | + if (!$this->shell) { |
|
69 | 69 | $config = new Configuration(); |
70 | 70 | |
71 | 71 | $config->getPresenter()->addCasters( |
@@ -46,7 +46,7 @@ |
||
46 | 46 | foreach (self::$appProperties as $property) { |
47 | 47 | try { |
48 | 48 | $val = $app->$property(); |
49 | - if (! is_null($val)) { |
|
49 | + if (!is_null($val)) { |
|
50 | 50 | $results[Caster::PREFIX_VIRTUAL.$property] = $val; |
51 | 51 | } |
52 | 52 | } catch (Exception $e) { |