Passed
Pull Request — master (#1185)
by Abdul Malik
13:36
created
src/Cache/tests/Storage/FileStorageTest.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     public function testGetsWithExistsValueAndCacheFile(): void
39 39
     {
40 40
         $ttl = time() + self::DEFAULT_TTL;
41
-        $value = $ttl . 's:3:"bar";';
41
+        $value = $ttl.'s:3:"bar";';
42 42
         $path = self::DEFAULT_PATH;
43 43
 
44 44
         $this->files->shouldReceive('read')->with($path)->andReturn($value);
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     {
62 62
         $path = self::DEFAULT_PATH;
63 63
 
64
-        $this->files->shouldReceive('read')->with($path)->andReturn(time() . 's:3:"bar";');
64
+        $this->files->shouldReceive('read')->with($path)->andReturn(time().'s:3:"bar";');
65 65
         $this->files->shouldReceive('exists')->with($path)->andReturn(true);
66 66
         $this->files->shouldReceive('delete')->with($path)->andReturnTrue();
67 67
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     public function testGetsWithExistsValueWithDeadValue(): void
72 72
     {
73 73
         $ttl = time() + self::DEFAULT_TTL;
74
-        $value = $ttl . 's:3:"barbar";';
74
+        $value = $ttl.'s:3:"barbar";';
75 75
         $path = self::DEFAULT_PATH;
76 76
 
77 77
         $this->files->shouldReceive('read')->with($path)->andReturn($value);
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     public function testSetsWithDefaultTTL(): void
85 85
     {
86 86
         $ttl = time() + self::DEFAULT_TTL;
87
-        $value = $ttl . 's:3:"bar";';
87
+        $value = $ttl.'s:3:"bar";';
88 88
 
89 89
         $this->files->shouldReceive('write')->with(self::DEFAULT_PATH, $value, null, true)->andReturnTrue();
90 90
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     public function testSetsWithTTLInSeconds(): void
95 95
     {
96 96
         $ttl = time() + 30;
97
-        $value = $ttl . 's:3:"bar";';
97
+        $value = $ttl.'s:3:"bar";';
98 98
 
99 99
         $this->files->shouldReceive('write')->with(self::DEFAULT_PATH, $value, null, true)->andReturnTrue();
100 100
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     public function testSetsWithTTLInDateInterval(): void
105 105
     {
106 106
         $ttl = time() + 30;
107
-        $value = $ttl . 's:3:"bar";';
107
+        $value = $ttl.'s:3:"bar";';
108 108
 
109 109
         $this->files->shouldReceive('write')->with(self::DEFAULT_PATH, $value, null, true)->andReturnTrue();
110 110
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     public function testSetsWithTTLInDateTime(): void
115 115
     {
116 116
         $ttl = time() + 30;
117
-        $value = $ttl . 's:3:"bar";';
117
+        $value = $ttl.'s:3:"bar";';
118 118
 
119 119
         $this->files->shouldReceive('write')->with(self::DEFAULT_PATH, $value, null, true)->andReturnTrue();
120 120
 
@@ -161,15 +161,15 @@  discard block
 block discarded – undo
161 161
     {
162 162
         $this->files->shouldReceive('read')->with(
163 163
             'path/to/cache/0b/ee/0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33'
164
-        )->andReturn((time() + self::DEFAULT_TTL) . 's:3:"abc";');
164
+        )->andReturn((time() + self::DEFAULT_TTL).'s:3:"abc";');
165 165
 
166 166
         $this->files->shouldReceive('read')->with(
167 167
             'path/to/cache/62/cd/62cdb7020ff920e5aa642c3d4066950dd1f01f4d'
168
-        )->andReturn((time() + self::DEFAULT_TTL) . 's:3:"cde";');
168
+        )->andReturn((time() + self::DEFAULT_TTL).'s:3:"cde";');
169 169
 
170 170
         $this->files->shouldReceive('read')->with(
171 171
             'path/to/cache/bb/e9/bbe960a25ea311d21d40669e93df2003ba9b90a2'
172
-        )->andReturn((time() + -1) . 's:3:"efg";');
172
+        )->andReturn((time() + -1).'s:3:"efg";');
173 173
         $this->files->shouldReceive('exists')->with(
174 174
             'path/to/cache/bb/e9/bbe960a25ea311d21d40669e93df2003ba9b90a2'
175 175
         )->andReturnFalse();
@@ -186,15 +186,15 @@  discard block
 block discarded – undo
186 186
         $ttl = time() + self::DEFAULT_TTL;
187 187
 
188 188
         $this->files->shouldReceive('write')
189
-            ->with('path/to/cache/0b/ee/0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33', $ttl . 's:3:"baz";', null, true)
189
+            ->with('path/to/cache/0b/ee/0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33', $ttl.'s:3:"baz";', null, true)
190 190
             ->andReturnTrue();
191 191
 
192 192
         $this->files->shouldReceive('write')
193
-            ->with('path/to/cache/62/cd/62cdb7020ff920e5aa642c3d4066950dd1f01f4d', $ttl . 's:3:"foo";', null, true)
193
+            ->with('path/to/cache/62/cd/62cdb7020ff920e5aa642c3d4066950dd1f01f4d', $ttl.'s:3:"foo";', null, true)
194 194
             ->andReturnTrue();
195 195
 
196 196
         $this->files->shouldReceive('write')
197
-            ->with('path/to/cache/bb/e9/bbe960a25ea311d21d40669e93df2003ba9b90a2', $ttl . 's:3:"bar";', null, true)
197
+            ->with('path/to/cache/bb/e9/bbe960a25ea311d21d40669e93df2003ba9b90a2', $ttl.'s:3:"bar";', null, true)
198 198
             ->andReturnTrue();
199 199
 
200 200
         $this->assertTrue(
@@ -211,15 +211,15 @@  discard block
 block discarded – undo
211 211
         $ttl = time() + 30;
212 212
 
213 213
         $this->files->shouldReceive('write')
214
-            ->with('path/to/cache/0b/ee/0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33', $ttl . 's:3:"baz";', null, true)
214
+            ->with('path/to/cache/0b/ee/0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33', $ttl.'s:3:"baz";', null, true)
215 215
             ->andReturnTrue();
216 216
 
217 217
         $this->files->shouldReceive('write')
218
-            ->with('path/to/cache/62/cd/62cdb7020ff920e5aa642c3d4066950dd1f01f4d', $ttl . 's:3:"foo";', null, true)
218
+            ->with('path/to/cache/62/cd/62cdb7020ff920e5aa642c3d4066950dd1f01f4d', $ttl.'s:3:"foo";', null, true)
219 219
             ->andReturnTrue();
220 220
 
221 221
         $this->files->shouldReceive('write')
222
-            ->with('path/to/cache/bb/e9/bbe960a25ea311d21d40669e93df2003ba9b90a2', $ttl . 's:3:"bar";', null, true)
222
+            ->with('path/to/cache/bb/e9/bbe960a25ea311d21d40669e93df2003ba9b90a2', $ttl.'s:3:"bar";', null, true)
223 223
             ->andReturnTrue();
224 224
 
225 225
         $this->assertTrue(
Please login to merge, or discard this patch.
src/Config/src/Patch/Group.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     public function patch(array $config): array
27 27
     {
28
-        foreach ($this->patches as $patch) {
28
+        foreach ($this->patches as $patch){
29 29
             $config = $patch->patch($config);
30 30
         }
31 31
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,8 @@
 block discarded – undo
25 25
 
26 26
     public function patch(array $config): array
27 27
     {
28
-        foreach ($this->patches as $patch) {
28
+        foreach ($this->patches as $patch)
29
+        {
29 30
             $config = $patch->patch($config);
30 31
         }
31 32
 
Please login to merge, or discard this patch.
src/Core/tests/Fixtures/UnionTypes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@
 block discarded – undo
13 13
 
14 14
 class UnionTypes
15 15
 {
16
-    public static function example(SampleClass|TypedClass $example)
16
+    public static function example(SampleClass | TypedClass $example)
17 17
     {
18 18
     }
19 19
 
20
-    public static function unionNull(null|string $nullable): null|string
20
+    public static function unionNull(null | string $nullable): null | string
21 21
     {
22 22
         return $nullable;
23 23
     }
Please login to merge, or discard this patch.
src/Prototype/src/Annotation/Line.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,8 @@
 block discarded – undo
33 33
 
34 34
     public function is(array $type): bool
35 35
     {
36
-        if ($this->type === null) {
36
+        if ($this->type === null)
37
+        {
37 38
             return false;
38 39
         }
39 40
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,12 +12,12 @@
 block discarded – undo
12 12
     public function __construct(
13 13
         public string $value,
14 14
         public ?string $type = null
15
-    ) {
15
+    ){
16 16
     }
17 17
 
18 18
     public function is(array $type): bool
19 19
     {
20
-        if ($this->type === null) {
20
+        if ($this->type === null){
21 21
             return false;
22 22
         }
23 23
 
Please login to merge, or discard this patch.
src/Views/src/ContextGenerator.php 2 patches
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,22 +50,26 @@
 block discarded – undo
50 50
      */
51 51
     private function rotate(ContextInterface $context, array $dependencies): array
52 52
     {
53
-        if (empty($dependencies)) {
53
+        if (empty($dependencies))
54
+        {
54 55
             return [];
55 56
         }
56 57
 
57 58
         $top = \array_shift($dependencies);
58 59
 
59 60
         $variants = [];
60
-        foreach ($top->getVariants() as $value) {
61
+        foreach ($top->getVariants() as $value)
62
+        {
61 63
             $variant = $context->withDependency(new ValueDependency($top->getName(), $value));
62 64
 
63
-            if (empty($dependencies)) {
65
+            if (empty($dependencies))
66
+            {
64 67
                 $variants[] = $variant;
65 68
                 continue;
66 69
             }
67 70
 
68
-            foreach ($this->rotate($variant, $dependencies) as $inner) {
71
+            foreach ($this->rotate($variant, $dependencies) as $inner)
72
+            {
69 73
                 $variants[] = $inner;
70 74
             }
71 75
         }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 {
15 15
     public function __construct(
16 16
         private readonly ContextInterface $context
17
-    ) {
17
+    ){
18 18
     }
19 19
 
20 20
     /**
@@ -40,22 +40,22 @@  discard block
 block discarded – undo
40 40
      */
41 41
     private function rotate(ContextInterface $context, array $dependencies): array
42 42
     {
43
-        if (empty($dependencies)) {
43
+        if (empty($dependencies)){
44 44
             return [];
45 45
         }
46 46
 
47 47
         $top = \array_shift($dependencies);
48 48
 
49 49
         $variants = [];
50
-        foreach ($top->getVariants() as $value) {
50
+        foreach ($top->getVariants() as $value){
51 51
             $variant = $context->withDependency(new ValueDependency($top->getName(), $value));
52 52
 
53
-            if (empty($dependencies)) {
53
+            if (empty($dependencies)){
54 54
                 $variants[] = $variant;
55 55
                 continue;
56 56
             }
57 57
 
58
-            foreach ($this->rotate($variant, $dependencies) as $inner) {
58
+            foreach ($this->rotate($variant, $dependencies) as $inner){
59 59
                 $variants[] = $inner;
60 60
             }
61 61
         }
Please login to merge, or discard this patch.
src/Distribution/src/Resolver/UriResolver.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,10 +17,10 @@
 block discarded – undo
17 17
 {
18 18
     protected function concat(string $file, ?string $prefix): string
19 19
     {
20
-        if ($prefix === null) {
20
+        if ($prefix === null){
21 21
             return $file;
22 22
         }
23 23
 
24
-        return \trim($prefix, '/') . '/' . \trim($file, '/');
24
+        return \trim($prefix, '/').'/'.\trim($file, '/');
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,8 @@
 block discarded – undo
17 17
 {
18 18
     protected function concat(string $file, ?string $prefix): string
19 19
     {
20
-        if ($prefix === null) {
20
+        if ($prefix === null)
21
+        {
21 22
             return $file;
22 23
         }
23 24
 
Please login to merge, or discard this patch.
src/Distribution/src/Resolver/CloudFrontResolver.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,8 @@
 block discarded – undo
73 73
 
74 74
     protected function assertCloudFrontAvailable(): void
75 75
     {
76
-        if (\class_exists(UrlSigner::class)) {
76
+        if (\class_exists(UrlSigner::class))
77
+        {
77 78
             return;
78 79
         }
79 80
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         string $privateKey,
26 26
         private readonly string $domain,
27 27
         private readonly ?string $prefix = null
28
-    ) {
28
+    ){
29 29
         $this->assertCloudFrontAvailable();
30 30
         $this->factory = new AmazonUriFactory();
31 31
         $this->signer = new UrlSigner($keyPairId, $privateKey);
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
     protected function assertCloudFrontAvailable(): void
48 48
     {
49
-        if (\class_exists(UrlSigner::class)) {
49
+        if (\class_exists(UrlSigner::class)){
50 50
             return;
51 51
         }
52 52
 
Please login to merge, or discard this patch.
src/Distribution/src/Internal/AmazonUriFactory.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
      * @var string
22 22
      */
23 23
     private const ERROR_NOT_AVAILABLE =
24
-        'The "aws/aws-sdk-php" package is supplied with the Guzzle PSR-7 ' .
25
-        'implementation, but it is not available. Please install the ' .
24
+        'The "aws/aws-sdk-php" package is supplied with the Guzzle PSR-7 '.
25
+        'implementation, but it is not available. Please install the '.
26 26
         '"aws/aws-sdk-php" package or use any other implementation of PSR-17 factories.'
27 27
     ;
28 28
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
     private function assertAvailable(): void
43 43
     {
44
-        if (\class_exists(Uri::class)) {
44
+        if (\class_exists(Uri::class)){
45 45
             return;
46 46
         }
47 47
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,8 @@
 block discarded – undo
41 41
 
42 42
     private function assertAvailable(): void
43 43
     {
44
-        if (\class_exists(Uri::class)) {
44
+        if (\class_exists(Uri::class))
45
+        {
45 46
             return;
46 47
         }
47 48
 
Please login to merge, or discard this patch.
src/Queue/src/Driver/NullDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,6 +17,6 @@
 block discarded – undo
17 17
     {
18 18
         // Do nothing
19 19
 
20
-        return (string) Uuid::uuid4();
20
+        return (string)Uuid::uuid4();
21 21
     }
22 22
 }
Please login to merge, or discard this patch.