Completed
Push — master ( c666f3...dae9af )
by Nasrul Hazim
02:13
created
src/Console/Commands/InstallCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             '--force'    => true,
41 41
         ]);
42 42
 
43
-        if('testing' != app()->environment())
43
+        if ('testing' != app()->environment())
44 44
         {
45 45
             $route = file_get_contents(__DIR__ . '/stubs/routes/web.php.stub');
46 46
             $file  = base_path('routes/web.php');
Please login to merge, or discard this patch.
src/Processors/PayslipProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 
11 11
     public function __construct($identifier = null)
12 12
     {
13
-        if (! is_null($identifier)) {
13
+        if (!is_null($identifier)) {
14 14
             if (is_string($identifier) || is_int($identifier)) {
15 15
                 $this->payslip = config('open-payroll.models.payslip')::query()
16 16
                     ->with('earnings', 'deductions', 'payroll', 'employee', 'employee.salary')
Please login to merge, or discard this patch.