Completed
Push — develop ( 798002...f6aa38 )
by Neomerx
03:40
created
src/Blocks/ProcedureBlock.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
     }
129 129
 
130 130
     /**
131
-     * @param callable|null $endCallable
131
+     * @param callable $endCallable
132 132
      *
133 133
      * @return self
134 134
      */
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * @inheritdoc
74 74
      */
75
-    public function getStartCallable(): ?callable
75
+    public function getStartCallable(): ? callable
76 76
     {
77 77
         return $this->startCallable;
78 78
     }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     /**
89 89
      * @inheritdoc
90 90
      */
91
-    public function getEndCallable(): ?callable
91
+    public function getEndCallable(): ? callable
92 92
     {
93 93
         return $this->endCallable;
94 94
     }
Please login to merge, or discard this patch.
src/Rules/BaseRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
     /**
129 129
      * @inheritdoc
130 130
      */
131
-    public function getParent(): ?RuleInterface
131
+    public function getParent(): ? RuleInterface
132 132
     {
133 133
         return $this->parent;
134 134
     }
Please login to merge, or discard this patch.
src/Contracts/Rules/RuleInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     /**
59 59
      * @return RuleInterface|null
60 60
      */
61
-    public function getParent(): ?RuleInterface;
61
+    public function getParent(): ? RuleInterface;
62 62
 
63 63
     /**
64 64
      * @param RuleInterface $rule
Please login to merge, or discard this patch.
src/Contracts/Errors/ErrorInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     /**
25 25
      * @return string|null
26 26
      */
27
-    public function getParameterName(): ?string;
27
+    public function getParameterName(): ? string;
28 28
 
29 29
     /**
30 30
      * @return mixed
@@ -39,5 +39,5 @@  discard block
 block discarded – undo
39 39
     /**
40 40
      * @return array|null
41 41
      */
42
-    public function getMessageContext(): ?array;
42
+    public function getMessageContext(): ? array;
43 43
 }
Please login to merge, or discard this patch.
src/Contracts/Blocks/ProcedureBlockInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     /**
25 25
      * @return callable|null
26 26
      */
27
-    public function getStartCallable(): ?callable;
27
+    public function getStartCallable(): ? callable;
28 28
 
29 29
     /**
30 30
      * @return callable
@@ -34,5 +34,5 @@  discard block
 block discarded – undo
34 34
     /**
35 35
      * @return callable|null
36 36
      */
37
-    public function getEndCallable(): ?callable;
37
+    public function getEndCallable(): ? callable;
38 38
 }
Please login to merge, or discard this patch.
src/Errors/Error.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * @param int         $code
50 50
      * @param array|null  $context
51 51
      */
52
-    public function __construct(?string $name, $value, int $code, ?array $context)
52
+    public function __construct(? string $name, $value, int $code, ? array $context)
53 53
     {
54 54
         $this->name    = $name;
55 55
         $this->value   = $value;
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     /**
61 61
      * @inheritdoc
62 62
      */
63
-    public function getParameterName(): ?string
63
+    public function getParameterName(): ? string
64 64
     {
65 65
         return $this->name;
66 66
     }
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     /**
85 85
      * @inheritdoc
86 86
      */
87
-    public function getMessageContext(): ?array
87
+    public function getMessageContext(): ? array
88 88
     {
89 89
         return $this->context;
90 90
     }
Please login to merge, or discard this patch.