@@ -23,7 +23,7 @@ |
||
23 | 23 | public const RUNTIME = 0666; |
24 | 24 | |
25 | 25 | //Only owner can write |
26 | - public const READONLY = 0644; |
|
26 | + public const readonly = 0644; |
|
27 | 27 | |
28 | 28 | /** |
29 | 29 | * Few size constants for better size manipulations. |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | public const NONE = 'None'; |
12 | 12 | |
13 | 13 | private const VALUES = [self::STRICT, self::LAX, self::NONE]; |
14 | - private const DEFAULT = self::LAX; |
|
14 | + private const default = self::LAX; |
|
15 | 15 | |
16 | 16 | private ?string $sameSite = null; |
17 | 17 | |
@@ -36,6 +36,6 @@ discard block |
||
36 | 36 | return null; |
37 | 37 | } |
38 | 38 | |
39 | - return ($sameSite === self::NONE && !$secure) ? self::DEFAULT : $sameSite; |
|
39 | + return ($sameSite === self::NONE && !$secure) ? self::default : $sameSite; |
|
40 | 40 | } |
41 | 41 | } |
@@ -27,12 +27,12 @@ |
||
27 | 27 | |
28 | 28 | private function defineValue(?string $sameSite, bool $secure): ?string |
29 | 29 | { |
30 | - if ($sameSite === null) { |
|
30 | + if ($sameSite === null){ |
|
31 | 31 | return null; |
32 | 32 | } |
33 | 33 | |
34 | 34 | $sameSite = \ucfirst(\strtolower($sameSite)); |
35 | - if (!\in_array($sameSite, self::VALUES, true)) { |
|
35 | + if (!\in_array($sameSite, self::VALUES, true)){ |
|
36 | 36 | return null; |
37 | 37 | } |
38 | 38 |
@@ -27,12 +27,14 @@ |
||
27 | 27 | |
28 | 28 | private function defineValue(?string $sameSite, bool $secure): ?string |
29 | 29 | { |
30 | - if ($sameSite === null) { |
|
30 | + if ($sameSite === null) |
|
31 | + { |
|
31 | 32 | return null; |
32 | 33 | } |
33 | 34 | |
34 | 35 | $sameSite = \ucfirst(\strtolower($sameSite)); |
35 | - if (!\in_array($sameSite, self::VALUES, true)) { |
|
36 | + if (!\in_array($sameSite, self::VALUES, true)) |
|
37 | + { |
|
36 | 38 | return null; |
37 | 39 | } |
38 | 40 |
@@ -70,14 +70,17 @@ discard block |
||
70 | 70 | |
71 | 71 | private function initContext(Request $request, AuthContextInterface $authContext): AuthContextInterface |
72 | 72 | { |
73 | - foreach ($this->transportRegistry->getTransports() as $name => $transport) { |
|
73 | + foreach ($this->transportRegistry->getTransports() as $name => $transport) |
|
74 | + { |
|
74 | 75 | $tokenID = $transport->fetchToken($request); |
75 | - if ($tokenID === null) { |
|
76 | + if ($tokenID === null) |
|
77 | + { |
|
76 | 78 | continue; |
77 | 79 | } |
78 | 80 | |
79 | 81 | $token = $this->tokenStorage->load($tokenID); |
80 | - if ($token === null) { |
|
82 | + if ($token === null) |
|
83 | + { |
|
81 | 84 | continue; |
82 | 85 | } |
83 | 86 | |
@@ -91,13 +94,15 @@ discard block |
||
91 | 94 | |
92 | 95 | private function closeContext(Request $request, Response $response, AuthContextInterface $authContext): Response |
93 | 96 | { |
94 | - if ($authContext->getToken() === null) { |
|
97 | + if ($authContext->getToken() === null) |
|
98 | + { |
|
95 | 99 | return $response; |
96 | 100 | } |
97 | 101 | |
98 | 102 | $transport = $this->transportRegistry->getTransport($authContext->getTransport()); |
99 | 103 | |
100 | - if ($authContext->isClosed()) { |
|
104 | + if ($authContext->isClosed()) |
|
105 | + { |
|
101 | 106 | $this->tokenStorage->delete($authContext->getToken()); |
102 | 107 | |
103 | 108 | return $transport->removeToken( |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | private readonly TokenStorageInterface $tokenStorage, |
30 | 30 | private readonly TransportRegistry $transportRegistry, |
31 | 31 | private readonly ?EventDispatcherInterface $eventDispatcher = null |
32 | - ) { |
|
32 | + ){ |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
@@ -49,14 +49,14 @@ discard block |
||
49 | 49 | |
50 | 50 | private function initContext(Request $request, AuthContextInterface $authContext): AuthContextInterface |
51 | 51 | { |
52 | - foreach ($this->transportRegistry->getTransports() as $name => $transport) { |
|
52 | + foreach ($this->transportRegistry->getTransports() as $name => $transport){ |
|
53 | 53 | $tokenID = $transport->fetchToken($request); |
54 | - if ($tokenID === null) { |
|
54 | + if ($tokenID === null){ |
|
55 | 55 | continue; |
56 | 56 | } |
57 | 57 | |
58 | 58 | $token = $this->tokenStorage->load($tokenID); |
59 | - if ($token === null) { |
|
59 | + if ($token === null){ |
|
60 | 60 | continue; |
61 | 61 | } |
62 | 62 | |
@@ -70,13 +70,13 @@ discard block |
||
70 | 70 | |
71 | 71 | private function closeContext(Request $request, Response $response, AuthContextInterface $authContext): Response |
72 | 72 | { |
73 | - if ($authContext->getToken() === null) { |
|
73 | + if ($authContext->getToken() === null){ |
|
74 | 74 | return $response; |
75 | 75 | } |
76 | 76 | |
77 | 77 | $transport = $this->transportRegistry->getTransport($authContext->getTransport()); |
78 | 78 | |
79 | - if ($authContext->isClosed()) { |
|
79 | + if ($authContext->isClosed()){ |
|
80 | 80 | $this->tokenStorage->delete($authContext->getToken()); |
81 | 81 | |
82 | 82 | return $transport->removeToken( |
@@ -30,7 +30,8 @@ |
||
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 |
@@ -16,7 +16,7 @@ discard block |
||
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 |
||
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 |
@@ -58,10 +58,10 @@ |
||
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 | } |
@@ -58,7 +58,8 @@ |
||
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 |
@@ -12,7 +12,7 @@ |
||
12 | 12 | |
13 | 13 | public function __construct( |
14 | 14 | private readonly ProcessRunner $processRunner |
15 | - ) { |
|
15 | + ){ |
|
16 | 16 | } |
17 | 17 | |
18 | 18 | /** |
@@ -13,8 +13,8 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -14,7 +14,8 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -43,15 +43,15 @@ |
||
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 |
@@ -43,15 +43,18 @@ |
||
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 |
@@ -14,7 +14,7 @@ discard block |
||
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 |
||
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 |
||
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 | } |
@@ -75,7 +75,8 @@ discard block |
||
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 |
||
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 | } |