Completed
Push — master ( 9439c1...234923 )
by Amine
01:42
created
examples/tests/RenderCommandTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,12 +9,12 @@
 block discarded – undo
9 9
     public function test_it_renders_the_template()
10 10
     {
11 11
         $this->command(new RenderCommand)
12
-             ->printsExactly("Hello You<br>");
12
+                ->printsExactly("Hello You<br>");
13 13
     }
14 14
 
15 15
     public function test_it_renders_with_custom_name()
16 16
     {
17 17
         $this->command(new RenderCommand, ['Foo'])
18
-             ->printsExactly("Hello Foo<br>");
18
+                ->printsExactly("Hello Foo<br>");
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
examples/HelloWorld.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
     protected function init ()
8 8
     {
9 9
         $this->name('Hello World')
10
-             ->version('1.0.0-alpha')
11
-             ->description('Shows a "Hello World" message');
10
+                ->version('1.0.0-alpha')
11
+                ->description('Shows a "Hello World" message');
12 12
     }
13 13
 
14 14
     protected function execute()
Please login to merge, or discard this patch.