Completed
Branch master (1d63e4)
by Yuriy
02:25
created
Category
src/Container.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * @author    Yuriy Davletshin <[email protected]>
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      */
98 98
     public function set(string $id, callable $definition): self
99 99
     {
100
-        if (! isset($this->frozenServices[$id])) {
100
+        if (!isset($this->frozenServices[$id])) {
101 101
             $this->services[$id] = function (Container $container) use ($definition) {
102 102
                 static $service;
103 103
                 if (!isset($service)) {
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      */
125 125
     public function setBuilder(string $id, callable $definition): self
126 126
     {
127
-        if (! isset($this->frozenServices[$id])) {
127
+        if (!isset($this->frozenServices[$id])) {
128 128
             $this->services[$id] = $definition;
129 129
 
130 130
             return $this;
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
      */
220 220
     public function offsetSet($key, $value)
221 221
     {
222
-        if (! isset($this->frozenParameters[$key])) {
222
+        if (!isset($this->frozenParameters[$key])) {
223 223
             $this->parameters[$key] = $value;
224 224
 
225 225
             return;
Please login to merge, or discard this patch.
src/DevContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * @author    Yuriy Davletshin <[email protected]>
Please login to merge, or discard this patch.
src/FrozenException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * @author    Yuriy Davletshin <[email protected]>
Please login to merge, or discard this patch.
src/NotFoundException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * @author    Yuriy Davletshin <[email protected]>
Please login to merge, or discard this patch.
tests/ContainerUsesMagicMethodsTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * @author    Yuriy Davletshin <[email protected]>
Please login to merge, or discard this patch.
tests/ContainerWithObjectsTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * @author    Yuriy Davletshin <[email protected]>
Please login to merge, or discard this patch.
tests/ContainerWithParametersTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * @author    Yuriy Davletshin <[email protected]>
Please login to merge, or discard this patch.
tests/ContainerWithServicesTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * @author    Yuriy Davletshin <[email protected]>
Please login to merge, or discard this patch.
tests/DevContainerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * @author    Yuriy Davletshin <[email protected]>
Please login to merge, or discard this patch.