Passed
Push — master ( 8c9cf4...949105 )
by Filipe
01:50 queued 26s
created
src/Definition/AbstractDefinition.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 self|$this|AbstractDefinition
40 40
      */
41
-    public function setScope($scope): DefinitionInterface|static
41
+    public function setScope($scope): DefinitionInterface | static
42 42
     {
43 43
         $this->scope = $scope;
44 44
         return $this;
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      *
50 50
      * @return Scope|string
51 51
      */
52
-    public function getScope(): string|Scope
52
+    public function getScope(): string | Scope
53 53
     {
54 54
         if (!$this->scope) {
55 55
             return Scope::Singleton();
Please login to merge, or discard this patch.
src/DefinitionInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,12 +33,12 @@
 block discarded – undo
33 33
      *
34 34
      * @return self|$this|DefinitionInterface
35 35
      */
36
-    public function setScope($scope): DefinitionInterface|static;
36
+    public function setScope($scope): DefinitionInterface | static;
37 37
 
38 38
     /**
39 39
      * Get resolution scope
40 40
      *
41 41
      * @return Scope|string
42 42
      */
43
-    public function getScope(): string|Scope;
43
+    public function getScope(): string | Scope;
44 44
 }
Please login to merge, or discard this patch.