Test Failed
Branch master (d02fed)
by Jinyun
07:13
created
src/Behavioral/State/Pay.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@  discard block
 block discarded – undo
4 4
 
5 5
 namespace DesignPattern\Behavioral\State;
6 6
 
7
-class Pay extends AbstractState
8
-{
7
+class Pay extends AbstractState
8
+{
9 9
     /**
10 10
      * @param  \DesignPattern\Behavioral\State\Order  $order
11 11
      *
@@ -23,8 +23,8 @@  discard block
 block discarded – undo
23 23
      *
24 24
      * @throws \LogicException
25 25
      */
26
-    public function toDispatch(Order $order)
27
-    {
26
+    public function toDispatch(Order $order)
27
+    {
28 28
         throw new \LogicException('The order has to be paid before processing dispatch.');
29 29
     }
30 30
 }
Please login to merge, or discard this patch.
src/Behavioral/Strategy/Collection.php 1 patch
Braces   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@  discard block
 block discarded – undo
4 4
 
5 5
 namespace DesignPattern\Behavioral\Strategy;
6 6
 
7
-class Collection
8
-{
7
+class Collection
8
+{
9 9
     /**
10 10
      * @var array
11 11
      */
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
      *
22 22
      * @param  array  $elements
23 23
      */
24
-    public function __construct(array $elements = [])
25
-    {
24
+    public function __construct(array $elements = [])
25
+    {
26 26
         $this->elements = $elements;
27 27
     }
28 28
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function sort(): array
36 36
     {
37
-        if (! $this->comparator) {
37
+        if (! $this->comparator) {
38 38
             throw new \LogicException('Comparator is not set.');
39 39
         }
40 40
 
Please login to merge, or discard this patch.
src/Behavioral/Iterator/ItemIterator.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@  discard block
 block discarded – undo
4 4
 
5 5
 namespace DesignPattern\Behavioral\Iterator;
6 6
 
7
-class ItemIterator implements \Iterator
8
-{
7
+class ItemIterator implements \Iterator
8
+{
9 9
     /**
10 10
      * @var \DesignPattern\Behavioral\Iterator\ItemList
11 11
      */
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
      *
22 22
      * @param  \DesignPattern\Behavioral\Iterator\ItemList  $list
23 23
      */
24
-    public function __construct(ItemList $list)
25
-    {
24
+    public function __construct(ItemList $list)
25
+    {
26 26
         $this->list = $list;
27 27
         $this->index = 0;
28 28
     }
Please login to merge, or discard this patch.
src/Behavioral/Iterator/Item.php 1 patch
Braces   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@  discard block
 block discarded – undo
4 4
 
5 5
 namespace DesignPattern\Behavioral\Iterator;
6 6
 
7
-class Item
8
-{
7
+class Item
8
+{
9 9
     /**
10 10
      * @var int
11 11
      */
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
      * @param  int  $id
23 23
      * @param  string  $name
24 24
      */
25
-    public function __construct(int $id, string $name)
26
-    {
25
+    public function __construct(int $id, string $name)
26
+    {
27 27
         $this->id = $id;
28 28
         $this->name = $name;
29 29
     }
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * @return string
49 49
      */
50
-    public function __toString()
51
-    {
50
+    public function __toString()
51
+    {
52 52
         return "$this->id - $this->name";
53 53
     }
54 54
 }
Please login to merge, or discard this patch.
src/Behavioral/Memento/Order.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@  discard block
 block discarded – undo
4 4
 
5 5
 namespace DesignPattern\Behavioral\Memento;
6 6
 
7
-class Order
8
-{
7
+class Order
8
+{
9 9
     /**
10 10
      * @var \DesignPattern\Behavioral\Memento\State
11 11
      */
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
      *
17 17
      * @param  \DesignPattern\Behavioral\Memento\State  $state
18 18
      */
19
-    public function __construct(State $state)
20
-    {
19
+    public function __construct(State $state)
20
+    {
21 21
         $this->state = $state;
22 22
     }
23 23
 
Please login to merge, or discard this patch.
src/Behavioral/Memento/Memento.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@  discard block
 block discarded – undo
4 4
 
5 5
 namespace DesignPattern\Behavioral\Memento;
6 6
 
7
-class Memento
8
-{
7
+class Memento
8
+{
9 9
     /**
10 10
      * @var \DesignPattern\Behavioral\Memento\State
11 11
      */
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
      *
17 17
      * @param  \DesignPattern\Behavioral\Memento\State  $state
18 18
      */
19
-    public function __construct(State $state)
20
-    {
19
+    public function __construct(State $state)
20
+    {
21 21
         $this->state = $state;
22 22
     }
23 23
 
Please login to merge, or discard this patch.
src/Behavioral/Interpreter/Parser.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
                     $stack[] = $this->arithmetic($stack, $item);
52 52
                     break;
53 53
                 case is_numeric($item): // Number
54
-                    $stack[] = new Number((int)$item);
54
+                    $stack[] = new Number((int) $item);
55 55
                     break;
56 56
                 default: // Variable.
57 57
                     $stack[] = new Variable($item);
Please login to merge, or discard this patch.
Braces   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@  discard block
 block discarded – undo
4 4
 
5 5
 namespace DesignPattern\Behavioral\Interpreter;
6 6
 
7
-class Parser
8
-{
7
+class Parser
8
+{
9 9
     /**
10 10
      * @var mixed
11 11
      */
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
      *
17 17
      * @param  string  $expression
18 18
      */
19
-    public function __construct(string $expression)
20
-    {
19
+    public function __construct(string $expression)
20
+    {
21 21
         $stack = $this->toDecompose($expression);
22 22
         $this->expression = array_pop($stack);
23 23
     }
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
      *
28 28
      * @return mixed
29 29
      */
30
-    public function interpret(array $context)
31
-    {
30
+    public function interpret(array $context)
31
+    {
32 32
         return $this->expression->interpret($context);
33 33
     }
34 34
 
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
     private function toDecompose(string $expression): array
43 43
     {
44 44
         $stack = [];
45
-        foreach (explode(' ', $expression) as $item) {
46
-            switch ($item) {
45
+        foreach (explode(' ', $expression) as $item) {
46
+            switch ($item) {
47 47
                 case '+': // Plus.
48 48
                 case '-': // Minus.
49 49
                 case '*': // Multiply.
Please login to merge, or discard this patch.
src/Behavioral/Interpreter/Variable.php 1 patch
Braces   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@  discard block
 block discarded – undo
4 4
 
5 5
 namespace DesignPattern\Behavioral\Interpreter;
6 6
 
7
-class Variable implements ExpressionInterface
8
-{
7
+class Variable implements ExpressionInterface
8
+{
9 9
     /**
10 10
      * @var string
11 11
      */
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
      *
17 17
      * @param  string  $name
18 18
      */
19
-    public function __construct(string $name)
20
-    {
19
+    public function __construct(string $name)
20
+    {
21 21
         $this->name = $name;
22 22
     }
23 23
 
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
      *
29 29
      * @throws \InvalidArgumentException
30 30
      */
31
-    public function interpret(array $context)
32
-    {
33
-        if (isset($context[$this->name])) {
31
+    public function interpret(array $context)
32
+    {
33
+        if (isset($context[$this->name])) {
34 34
             return $context[$this->name]->interpret($context);
35 35
         }
36 36
 
Please login to merge, or discard this patch.
src/Behavioral/Interpreter/ExpressionInterface.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
 
5 5
 namespace DesignPattern\Behavioral\Interpreter;
6 6
 
7
-interface ExpressionInterface
8
-{
7
+interface ExpressionInterface
8
+{
9 9
     /**
10 10
      * @param  array  $context
11 11
      *
Please login to merge, or discard this patch.