@@ -92,6 +92,9 @@ discard block |
||
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | |
| 95 | + /** |
|
| 96 | + * @param integer $code |
|
| 97 | + */ |
|
| 95 | 98 | private function terminate($code) |
| 96 | 99 | { |
| 97 | 100 | throw new TerminateException(NULL, $code); |
@@ -141,7 +144,7 @@ discard block |
||
| 141 | 144 | |
| 142 | 145 | |
| 143 | 146 | /** |
| 144 | - * @param $configFile |
|
| 147 | + * @param string $configFile |
|
| 145 | 148 | * @param Container|NULL $bootstrapContainer |
| 146 | 149 | * @return Container |
| 147 | 150 | */ |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | |
| 19 | 19 | class MemberAccessException extends Exception {} |
| 20 | 20 | |
| 21 | -if(PHP_VERSION_ID < 70000){ // backwards compatibility |
|
| 21 | +if (PHP_VERSION_ID < 70000) { // backwards compatibility |
|
| 22 | 22 | |
| 23 | 23 | class Throwable extends \Exception {} // it's actually interface, but it does not matter |
| 24 | 24 | |