@@ -10,6 +10,9 @@ |
||
| 10 | 10 | { |
| 11 | 11 | private $configFilename; |
| 12 | 12 | |
| 13 | + /** |
|
| 14 | + * @param string $env |
|
| 15 | + */ |
|
| 13 | 16 | public function __construct($env, $debug, $configFilename) |
| 14 | 17 | { |
| 15 | 18 | parent::__construct($env, $debug); |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | $this->cacheDir = $cacheDir = tempnam(sys_get_temp_dir(), 'raven-bundle-test'); |
| 20 | 20 | unlink($cacheDir); |
| 21 | 21 | |
| 22 | - register_shutdown_function(function () use ($cacheDir) { |
|
| 22 | + register_shutdown_function(function() use ($cacheDir) { |
|
| 23 | 23 | $fs = new Filesystem(); |
| 24 | 24 | $fs->remove($cacheDir); |
| 25 | 25 | }); |