Passed
Branch master (16c9d0)
by Alessandro
03:08
created
Category
examples/example-00.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,6 +50,6 @@
 block discarded – undo
50 50
 $state = $pipeline
51 51
     ->pipe(new SayHello)               // Append "Hello!" to TextState
52 52
     ->pipe(new SayMyNameIsAlessandro)  // Append "My name is Alessandro" to TextState
53
-    ->run(new TextState);              // Pass an initial State
53
+    ->run(new TextState); // Pass an initial State
54 54
 
55 55
 echo $state->get(); // Print: Hello! My name is Alessandro!
56 56
\ No newline at end of file
Please login to merge, or discard this patch.
examples/example-01.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,6 +41,6 @@
 block discarded – undo
41 41
 $state = $pipeline
42 42
     ->pipe($sayHello)               // Append "Hello!" to TextState
43 43
     ->pipe($sayMyNameIsAlessandro)  // Append "My name is Alessandro" to TextState
44
-    ->run($state);                  // Pass an initial State
44
+    ->run($state); // Pass an initial State
45 45
 
46 46
 echo $state->get(); // Print: Hello! My name is Alessandro!
47 47
\ No newline at end of file
Please login to merge, or discard this patch.