Completed
Pull Request — master (#433)
by Albin
10:58
created
src/Gaufrette/Adapter/Local/spec/LocalStreamSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 
17 17
     function it_throws_runtime_exception_when_file_doesnt_exists_and_custom_error_handler_specified()
18 18
     {
19
-        $custom_error_handler = function ($errno, $errstr, $errfile, $errline) {
19
+        $custom_error_handler = function($errno, $errstr, $errfile, $errline) {
20 20
             throw new \ErrorException($errstr, 0, $errno, $errfile, $errline);
21 21
         };
22 22
         set_error_handler($custom_error_handler);
Please login to merge, or discard this patch.
src/Gaufrette/Adapter/Local/src/Local.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
  * @author Leszek Prabucki <[email protected]>
14 14
  */
15 15
 class Local implements Adapter,
16
-                       Adapter\StreamFactory,
17
-                       Adapter\ChecksumCalculator,
18
-                       Adapter\SizeCalculator,
19
-                       Adapter\MimeTypeProvider
16
+                        Adapter\StreamFactory,
17
+                        Adapter\ChecksumCalculator,
18
+                        Adapter\SizeCalculator,
19
+                        Adapter\MimeTypeProvider
20 20
 {
21 21
     protected $directory;
22 22
     private $create;
Please login to merge, or discard this patch.