Completed
Pull Request — master (#53)
by
unknown
01:32
created
src/Template/Template.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,9 @@
 block discarded – undo
33 33
 
34 34
 	public function with($data = [])
35 35
 	{
36
-		if($data)
37
-			$this->dirty = true;
36
+		if($data) {
37
+					$this->dirty = true;
38
+		}
38 39
 		foreach ($data as $key => $value) {
39 40
 			$this->data[$key] = $value;
40 41
 		}
Please login to merge, or discard this patch.
src/Commands/PublishCommand.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
             
29 29
             if($this->copyFile($from, $to)) {
30 30
                 $this->info($shortFrom . ' has succesfully been copied to ' . $this->shortPath($to));
31
-            }else{
31
+            } else{
32 32
                 $this->warn($shortFrom . ' could not be copied. To try and force use the --f option.');
33 33
             }
34 34
         }
Please login to merge, or discard this patch.