Completed
Push — master ( 21c42f...4669bc )
by Alessandro
14s
created
examples/example-00.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 
47 47
 $pipeline
48 48
     ->pipe(new SayHello)                // Append "Hello!" to TextState
49
-    ->pipe(new SayMyNameIsAlessandro);  // Append "My name is Alessandro" to TextState
50
-$payload = $pipeline($payload);         // Pass an initial State
49
+    ->pipe(new SayMyNameIsAlessandro); // Append "My name is Alessandro" to TextState
50
+$payload = $pipeline($payload); // Pass an initial State
51 51
 
52
-echo $payload->getData();               // Print: Hello! My name is Alessandro!
52
+echo $payload->getData(); // Print: Hello! My name is Alessandro!
Please login to merge, or discard this patch.