Completed
Push — master ( 5102a1...279170 )
by Joao
01:51
created
src/Daemonize.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -49,9 +49,9 @@  discard block
 block discarded – undo
49 49
             )
50 50
         );
51 51
 
52
-		set_error_handler(function($number, $error){
53
-			throw new \Exception($error);
54
-		});
52
+        set_error_handler(function($number, $error){
53
+            throw new \Exception($error);
54
+        });
55 55
         file_put_contents("/etc/init.d/$svcName", $templateStr);
56 56
         shell_exec("chmod a+x /etc/init.d/$svcName");
57 57
         restore_error_handler();
@@ -80,9 +80,9 @@  discard block
 block discarded – undo
80 80
 
81 81
     protected static function isDaemonizeService($filename)
82 82
     {
83
-		set_error_handler(function($number, $error){
84
-			throw new \Exception($error);
85
-		});
83
+        set_error_handler(function($number, $error){
84
+            throw new \Exception($error);
85
+        });
86 86
 
87 87
         $contents = file_get_contents($filename);
88 88
 
Please login to merge, or discard this patch.