Completed
Push — master ( 85a3aa...cbfed7 )
by Rafael
05:09
created
Category
src/Definition/QueryDefinition.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
     /**
107 107
      * {@inheritDoc}
108 108
      */
109
-    public function getResolver():?string
109
+    public function getResolver(): ?string
110 110
     {
111 111
         return $this->resolver;
112 112
     }
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     /**
115 115
      * {@inheritDoc}
116 116
      */
117
-    public function setResolver(?string $resolver): ActionDefinitionInterface
117
+    public function setResolver(?string $resolver) : ActionDefinitionInterface
118 118
     {
119 119
         $this->resolver = $resolver;
120 120
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
     /**
125 125
      * {@inheritDoc}
126 126
      */
127
-    public function getDescription():?string
127
+    public function getDescription(): ?string
128 128
     {
129 129
         return $this->description;
130 130
     }
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     /**
133 133
      * {@inheritDoc}
134 134
      */
135
-    public function setDescription(?string $description): ActionDefinitionInterface
135
+    public function setDescription(?string $description) : ActionDefinitionInterface
136 136
     {
137 137
         $this->description = $description;
138 138
 
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      *
153 153
      * @return bool
154 154
      */
155
-    public function hasArg(?string $name): bool
155
+    public function hasArg(?string $name) : bool
156 156
     {
157 157
         return (bool) ($this->args[$name] ?? false);
158 158
     }
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      *
163 163
      * @return ArgumentDefinition
164 164
      */
165
-    public function getArg(?string $name): ArgumentDefinition
165
+    public function getArg(?string $name) : ArgumentDefinition
166 166
     {
167 167
         return $this->args[$name];
168 168
     }
Please login to merge, or discard this patch.
src/Definition/ActionDefinitionInterface.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -66,26 +66,26 @@  discard block
 block discarded – undo
66 66
     /**
67 67
      * @return string
68 68
      */
69
-    public function getResolver():?string;
69
+    public function getResolver(): ?string;
70 70
 
71 71
     /**
72 72
      * @param string $resolver
73 73
      *
74 74
      * @return ActionDefinitionInterface
75 75
      */
76
-    public function setResolver(?string $resolver): ActionDefinitionInterface;
76
+    public function setResolver(?string $resolver) : ActionDefinitionInterface;
77 77
 
78 78
     /**
79 79
      * @return string
80 80
      */
81
-    public function getDescription():?string;
81
+    public function getDescription(): ?string;
82 82
 
83 83
     /**
84 84
      * @param string $description
85 85
      *
86 86
      * @return ActionDefinitionInterface
87 87
      */
88
-    public function setDescription(?string $description): ActionDefinitionInterface;
88
+    public function setDescription(?string $description) : ActionDefinitionInterface;
89 89
 
90 90
     /**
91 91
      * @return array|ArgumentDefinition[]
@@ -97,14 +97,14 @@  discard block
 block discarded – undo
97 97
      *
98 98
      * @return bool
99 99
      */
100
-    public function hasArg(?string $name): bool;
100
+    public function hasArg(?string $name) : bool;
101 101
 
102 102
     /**
103 103
      * @param string $name
104 104
      *
105 105
      * @return ArgumentDefinition
106 106
      */
107
-    public function getArg(?string $name): ArgumentDefinition;
107
+    public function getArg(?string $name) : ArgumentDefinition;
108 108
 
109 109
     /**
110 110
      * @param ArgumentDefinition $arg
Please login to merge, or discard this patch.
src/Definition/ClassAwareDefinitionTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      *
34 34
      * @return ClassAwareDefinitionInterface
35 35
      */
36
-    public function setClass(?string $class): ClassAwareDefinitionInterface
36
+    public function setClass(?string $class) : ClassAwareDefinitionInterface
37 37
     {
38 38
         $this->class = $class;
39 39
 
Please login to merge, or discard this patch.
src/Definition/DefinitionTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      *
39 39
      * @return DefinitionInterface
40 40
      */
41
-    public function setName(?string $name): DefinitionInterface
41
+    public function setName(?string $name) : DefinitionInterface
42 42
     {
43 43
         $this->name = $name;
44 44
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * @return DefinitionInterface
60 60
      */
61
-    public function setDescription(?string $description): DefinitionInterface
61
+    public function setDescription(?string $description) : DefinitionInterface
62 62
     {
63 63
         $this->description = $description;
64 64
 
Please login to merge, or discard this patch.
src/Definition/DeprecateInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,12 +21,12 @@
 block discarded – undo
21 21
      *
22 22
      * @return DeprecateInterface
23 23
      */
24
-    public function setDeprecationReason(?string $deprecationReason): DeprecateInterface;
24
+    public function setDeprecationReason(?string $deprecationReason) : DeprecateInterface;
25 25
 
26 26
     /**
27 27
      * @return string
28 28
      */
29
-    public function getDeprecationReason():?string;
29
+    public function getDeprecationReason(): ?string;
30 30
 
31 31
     /**
32 32
      * @return bool
Please login to merge, or discard this patch.
src/Definition/ArgumentDefinition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
      *
168 168
      * @return ArgumentDefinition
169 169
      */
170
-    public function setDescription(?string $description): ArgumentDefinition
170
+    public function setDescription(?string $description) : ArgumentDefinition
171 171
     {
172 172
         $this->description = $description;
173 173
 
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
      *
208 208
      * @return ArgumentDefinition
209 209
      */
210
-    public function setInternalName(?string $internalName): ArgumentDefinition
210
+    public function setInternalName(?string $internalName) : ArgumentDefinition
211 211
     {
212 212
         $this->internalName = $internalName;
213 213
 
Please login to merge, or discard this patch.
src/Definition/ClassAwareDefinitionInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,5 +25,5 @@
 block discarded – undo
25 25
      *
26 26
      * @return ClassAwareDefinitionInterface
27 27
      */
28
-    public function setClass(?string $class): ClassAwareDefinitionInterface;
28
+    public function setClass(?string $class) : ClassAwareDefinitionInterface;
29 29
 }
Please login to merge, or discard this patch.
src/Definition/FieldDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
     /**
158 158
      * @return null|int
159 159
      */
160
-    public function getInputRelation():?int
160
+    public function getInputRelation(): ?int
161 161
     {
162 162
         return $this->inputRelation;
163 163
     }
Please login to merge, or discard this patch.