Passed
Pull Request — master (#1177)
by Abdul Malik
11:09
created
src/Broadcasting/src/BroadcastManager.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,8 @@
 block discarded – undo
30 30
         // Replaces alias with real storage name
31 31
         $name = $this->config->getAliases()[$name] ?? $name;
32 32
 
33
-        if (isset($this->connections[$name])) {
33
+        if (isset($this->connections[$name]))
34
+        {
34 35
             return $this->connections[$name];
35 36
         }
36 37
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     public function __construct(
17 17
         private readonly FactoryInterface $factory,
18 18
         private readonly BroadcastConfig $config
19
-    ) {
19
+    ){
20 20
     }
21 21
 
22 22
     public function connection(?string $name = null): BroadcastInterface
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         // Replaces alias with real storage name
27 27
         $name = $this->config->getAliases()[$name] ?? $name;
28 28
 
29
-        if (isset($this->connections[$name])) {
29
+        if (isset($this->connections[$name])){
30 30
             return $this->connections[$name];
31 31
         }
32 32
 
Please login to merge, or discard this patch.
src/Http/src/Config/HttpConfig.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,10 +58,10 @@
 block discarded – undo
58 58
      */
59 59
     public function getChunkSize(): ?int
60 60
     {
61
-        if (\is_null($this->config['chunkSize']) || (int) $this->config['chunkSize'] < 0) {
61
+        if (\is_null($this->config['chunkSize']) || (int)$this->config['chunkSize'] < 0){
62 62
             return null;
63 63
         }
64 64
 
65
-        return (int) $this->config['chunkSize'];
65
+        return (int)$this->config['chunkSize'];
66 66
     }
67 67
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,8 @@
 block discarded – undo
58 58
      */
59 59
     public function getChunkSize(): ?int
60 60
     {
61
-        if (\is_null($this->config['chunkSize']) || (int) $this->config['chunkSize'] < 0) {
61
+        if (\is_null($this->config['chunkSize']) || (int) $this->config['chunkSize'] < 0)
62
+        {
62 63
             return null;
63 64
         }
64 65
 
Please login to merge, or discard this patch.
builder/ProcessParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 
13 13
     public function __construct(
14 14
         private readonly ProcessRunner $processRunner
15
-    ) {
15
+    ){
16 16
     }
17 17
 
18 18
     /**
Please login to merge, or discard this patch.
builder/ValidateVersionReleaseWorker.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@  discard block
 block discarded – undo
13 13
     public function __construct(
14 14
         private readonly TagParserInterface $parser,
15 15
         private ?string $gitDirectory = null
16
-    ) {
17
-        if ($gitDirectory === null) {
16
+    ){
17
+        if ($gitDirectory === null){
18 18
             $this->gitDirectory = \dirname(__DIR__);
19 19
         }
20 20
     }
@@ -32,13 +32,13 @@  discard block
 block discarded – undo
32 32
         $mostRecentVersion = $this->findMostRecentVersion($version);
33 33
 
34 34
         // no tag yet
35
-        if ($mostRecentVersion === null) {
35
+        if ($mostRecentVersion === null){
36 36
             return;
37 37
         }
38 38
 
39 39
         // validation
40 40
         $mostRecentVersion = new Version(\strtolower($mostRecentVersion));
41
-        if ($version->isGreaterThan($mostRecentVersion)) {
41
+        if ($version->isGreaterThan($mostRecentVersion)){
42 42
             return;
43 43
         }
44 44
 
@@ -52,23 +52,23 @@  discard block
 block discarded – undo
52 52
     private function findMostRecentVersion(Version $version): ?string
53 53
     {
54 54
         $tags = [];
55
-        foreach ($this->parser->parse($this->gitDirectory) as $tag) {
55
+        foreach ($this->parser->parse($this->gitDirectory) as $tag){
56 56
             $tag = new Version(\strtolower($tag));
57 57
 
58 58
             // all previous major versions
59
-            if ($version->getMajor()->getValue() > $tag->getMajor()->getValue()) {
59
+            if ($version->getMajor()->getValue() > $tag->getMajor()->getValue()){
60 60
                 $tags[] = $tag;
61 61
             }
62 62
 
63 63
             // all minor versions up to the requested in the requested major version
64
-            if ($version->getMajor()->getValue() === $tag->getMajor()->getValue()) {
65
-                if ($version->getMinor()->getValue() >= $tag->getMinor()->getValue()) {
64
+            if ($version->getMajor()->getValue() === $tag->getMajor()->getValue()){
65
+                if ($version->getMinor()->getValue() >= $tag->getMinor()->getValue()){
66 66
                     $tags[] = $tag;
67 67
                 }
68 68
             }
69 69
         }
70 70
 
71
-        if ($tags === []) {
71
+        if ($tags === []){
72 72
             return null;
73 73
         }
74 74
 
Please login to merge, or discard this patch.
Braces   +16 added lines, -8 removed lines patch added patch discarded remove patch
@@ -14,7 +14,8 @@  discard block
 block discarded – undo
14 14
         private readonly TagParserInterface $parser,
15 15
         private ?string $gitDirectory = null
16 16
     ) {
17
-        if ($gitDirectory === null) {
17
+        if ($gitDirectory === null)
18
+        {
18 19
             $this->gitDirectory = \dirname(__DIR__);
19 20
         }
20 21
     }
@@ -32,13 +33,15 @@  discard block
 block discarded – undo
32 33
         $mostRecentVersion = $this->findMostRecentVersion($version);
33 34
 
34 35
         // no tag yet
35
-        if ($mostRecentVersion === null) {
36
+        if ($mostRecentVersion === null)
37
+        {
36 38
             return;
37 39
         }
38 40
 
39 41
         // validation
40 42
         $mostRecentVersion = new Version(\strtolower($mostRecentVersion));
41
-        if ($version->isGreaterThan($mostRecentVersion)) {
43
+        if ($version->isGreaterThan($mostRecentVersion))
44
+        {
42 45
             return;
43 46
         }
44 47
 
@@ -52,23 +55,28 @@  discard block
 block discarded – undo
52 55
     private function findMostRecentVersion(Version $version): ?string
53 56
     {
54 57
         $tags = [];
55
-        foreach ($this->parser->parse($this->gitDirectory) as $tag) {
58
+        foreach ($this->parser->parse($this->gitDirectory) as $tag)
59
+        {
56 60
             $tag = new Version(\strtolower($tag));
57 61
 
58 62
             // all previous major versions
59
-            if ($version->getMajor()->getValue() > $tag->getMajor()->getValue()) {
63
+            if ($version->getMajor()->getValue() > $tag->getMajor()->getValue())
64
+            {
60 65
                 $tags[] = $tag;
61 66
             }
62 67
 
63 68
             // all minor versions up to the requested in the requested major version
64
-            if ($version->getMajor()->getValue() === $tag->getMajor()->getValue()) {
65
-                if ($version->getMinor()->getValue() >= $tag->getMinor()->getValue()) {
69
+            if ($version->getMajor()->getValue() === $tag->getMajor()->getValue())
70
+            {
71
+                if ($version->getMinor()->getValue() >= $tag->getMinor()->getValue())
72
+                {
66 73
                     $tags[] = $tag;
67 74
                 }
68 75
             }
69 76
         }
70 77
 
71
-        if ($tags === []) {
78
+        if ($tags === [])
79
+        {
72 80
             return null;
73 81
         }
74 82
 
Please login to merge, or discard this patch.
src/Session/src/Config/SessionConfig.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,15 +43,15 @@
 block discarded – undo
43 43
      */
44 44
     public function getHandler(): ?Autowire
45 45
     {
46
-        if (empty($this->config['handler'])) {
46
+        if (empty($this->config['handler'])){
47 47
             return null;
48 48
         }
49 49
 
50
-        if ($this->config['handler'] instanceof Autowire) {
50
+        if ($this->config['handler'] instanceof Autowire){
51 51
             return $this->config['handler'];
52 52
         }
53 53
 
54
-        if (\class_exists($this->config['handler'])) {
54
+        if (\class_exists($this->config['handler'])){
55 55
             return new Autowire($this->config['handler']);
56 56
         }
57 57
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,15 +43,18 @@
 block discarded – undo
43 43
      */
44 44
     public function getHandler(): ?Autowire
45 45
     {
46
-        if (empty($this->config['handler'])) {
46
+        if (empty($this->config['handler']))
47
+        {
47 48
             return null;
48 49
         }
49 50
 
50
-        if ($this->config['handler'] instanceof Autowire) {
51
+        if ($this->config['handler'] instanceof Autowire)
52
+        {
51 53
             return $this->config['handler'];
52 54
         }
53 55
 
54
-        if (\class_exists($this->config['handler'])) {
56
+        if (\class_exists($this->config['handler']))
57
+        {
55 58
             return new Autowire($this->config['handler']);
56 59
         }
57 60
 
Please login to merge, or discard this patch.
src/Session/src/SessionSection.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function __construct(
15 15
         private readonly SessionInterface $session,
16 16
         private readonly string $name
17
-    ) {
17
+    ){
18 18
     }
19 19
 
20 20
     /**
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
     public function get(string $name, mixed $default = null): mixed
77 77
     {
78
-        if (!$this->has($name)) {
78
+        if (!$this->has($name)){
79 79
             return $default;
80 80
         }
81 81
 
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     {
130 130
         $this->session->resume();
131 131
 
132
-        if (!isset($_SESSION[$this->name])) {
132
+        if (!isset($_SESSION[$this->name])){
133 133
             $_SESSION[$this->name] = [];
134 134
         }
135 135
     }
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,8 @@  discard block
 block discarded – undo
75 75
 
76 76
     public function get(string $name, mixed $default = null): mixed
77 77
     {
78
-        if (!$this->has($name)) {
78
+        if (!$this->has($name))
79
+        {
79 80
             return $default;
80 81
         }
81 82
 
@@ -129,7 +130,8 @@  discard block
 block discarded – undo
129 130
     {
130 131
         $this->session->resume();
131 132
 
132
-        if (!isset($_SESSION[$this->name])) {
133
+        if (!isset($_SESSION[$this->name]))
134
+        {
133 135
             $_SESSION[$this->name] = [];
134 136
         }
135 137
     }
Please login to merge, or discard this patch.
src/Session/src/Handler/FileHandler.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function __construct(
15 15
         private readonly FilesInterface $files,
16 16
         private readonly string $directory
17
-    ) {
17
+    ){
18 18
     }
19 19
 
20 20
     public function close(): bool
@@ -35,8 +35,8 @@  discard block
 block discarded – undo
35 35
      */
36 36
     public function gc(int $maxlifetime): int
37 37
     {
38
-        foreach ($this->files->getFiles($this->directory) as $filename) {
39
-            if ($this->files->time($filename) < \time() - $maxlifetime) {
38
+        foreach ($this->files->getFiles($this->directory) as $filename){
39
+            if ($this->files->time($filename) < \time() - $maxlifetime){
40 40
                 $this->files->delete($filename);
41 41
             }
42 42
         }
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,10 @@
 block discarded – undo
35 35
      */
36 36
     public function gc(int $maxlifetime): int
37 37
     {
38
-        foreach ($this->files->getFiles($this->directory) as $filename) {
39
-            if ($this->files->time($filename) < \time() - $maxlifetime) {
38
+        foreach ($this->files->getFiles($this->directory) as $filename)
39
+        {
40
+            if ($this->files->time($filename) < \time() - $maxlifetime)
41
+            {
40 42
                 $this->files->delete($filename);
41 43
             }
42 44
         }
Please login to merge, or discard this patch.
src/Serializer/tests/Serializer/PhpSerializerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
         $this->assertSame('a:2:{i:0;s:4:"some";i:1;s:8:"elements";}', $serializer->serialize(['some', 'elements']));
21 21
         $this->assertSame(['some', 'elements'], $serializer->unserialize('a:2:{i:0;s:4:"some";i:1;s:8:"elements";}'));
22
-        $this->assertSame(['some', 'elements'], $serializer->unserialize(new class() implements \Stringable {
22
+        $this->assertSame(['some', 'elements'], $serializer->unserialize(new class() implements \Stringable{
23 23
             public function __toString(): string
24 24
             {
25 25
                 return 'a:2:{i:0;s:4:"some";i:1;s:8:"elements";}';
Please login to merge, or discard this patch.
src/Serializer/tests/Serializer/JsonSerializerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
         $this->assertSame('["some","elements"]', $serializer->serialize(['some', 'elements']));
19 19
         $this->assertSame(['some', 'elements'], $serializer->unserialize('["some","elements"]'));
20
-        $this->assertSame(['some', 'elements'], $serializer->unserialize(new class() implements \Stringable {
20
+        $this->assertSame(['some', 'elements'], $serializer->unserialize(new class() implements \Stringable{
21 21
             public function __toString(): string
22 22
             {
23 23
                 return '["some","elements"]';
Please login to merge, or discard this patch.