@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | $line = $reflection->getStartLine(); |
| 32 | 32 | |
| 33 | 33 | $fileAndLine = ''; |
| 34 | - if (!empty($fileName)) { |
|
| 34 | + if (!empty($fileName)){ |
|
| 35 | 35 | $fileAndLine = "in \"$fileName\" at line $line"; |
| 36 | 36 | } |
| 37 | 37 | |
@@ -42,23 +42,23 @@ discard block |
||
| 42 | 42 | { |
| 43 | 43 | $closureParameters = []; |
| 44 | 44 | |
| 45 | - foreach ($reflection->getParameters() as $parameter) { |
|
| 45 | + foreach ($reflection->getParameters() as $parameter){ |
|
| 46 | 46 | /** @var ReflectionNamedType|ReflectionUnionType|null $type */ |
| 47 | 47 | $type = $parameter->getType(); |
| 48 | 48 | $parameterString = \sprintf( |
| 49 | 49 | '%s %s%s$%s', |
| 50 | 50 | // type |
| 51 | - (string) $type, |
|
| 51 | + (string)$type, |
|
| 52 | 52 | // reference |
| 53 | 53 | $parameter->isPassedByReference() ? '&' : '', |
| 54 | 54 | // variadic |
| 55 | 55 | $parameter->isVariadic() ? '...' : '', |
| 56 | 56 | $parameter->getName(), |
| 57 | 57 | ); |
| 58 | - if ($parameter->isDefaultValueAvailable()) { |
|
| 58 | + if ($parameter->isDefaultValueAvailable()){ |
|
| 59 | 59 | $default = $parameter->getDefaultValue(); |
| 60 | - $parameterString .= ' = ' . match (true) { |
|
| 61 | - \is_object($default) => 'new ' . $default::class . '(...)', |
|
| 60 | + $parameterString .= ' = '.match (true) { |
|
| 61 | + \is_object($default) => 'new '.$default::class.'(...)', |
|
| 62 | 62 | $parameter->isDefaultValueConstant() => $parameter->getDefaultValueConstantName(), |
| 63 | 63 | default => \var_export($default, true), |
| 64 | 64 | }; |
@@ -66,6 +66,6 @@ discard block |
||
| 66 | 66 | $closureParameters[] = \ltrim($parameterString); |
| 67 | 67 | } |
| 68 | 68 | $static = $reflection->isStatic() ? 'static ' : ''; |
| 69 | - return "{$static}function (" . \implode(', ', $closureParameters) . ')'; |
|
| 69 | + return "{$static}function (".\implode(', ', $closureParameters).')'; |
|
| 70 | 70 | } |
| 71 | 71 | } |
@@ -31,7 +31,8 @@ discard block |
||
| 31 | 31 | $line = $reflection->getStartLine(); |
| 32 | 32 | |
| 33 | 33 | $fileAndLine = ''; |
| 34 | - if (!empty($fileName)) { |
|
| 34 | + if (!empty($fileName)) |
|
| 35 | + { |
|
| 35 | 36 | $fileAndLine = "in \"$fileName\" at line $line"; |
| 36 | 37 | } |
| 37 | 38 | |
@@ -42,7 +43,8 @@ discard block |
||
| 42 | 43 | { |
| 43 | 44 | $closureParameters = []; |
| 44 | 45 | |
| 45 | - foreach ($reflection->getParameters() as $parameter) { |
|
| 46 | + foreach ($reflection->getParameters() as $parameter) |
|
| 47 | + { |
|
| 46 | 48 | /** @var ReflectionNamedType|ReflectionUnionType|null $type */ |
| 47 | 49 | $type = $parameter->getType(); |
| 48 | 50 | $parameterString = \sprintf( |
@@ -55,7 +57,8 @@ discard block |
||
| 55 | 57 | $parameter->isVariadic() ? '...' : '', |
| 56 | 58 | $parameter->getName(), |
| 57 | 59 | ); |
| 58 | - if ($parameter->isDefaultValueAvailable()) { |
|
| 60 | + if ($parameter->isDefaultValueAvailable()) |
|
| 61 | + { |
|
| 59 | 62 | $default = $parameter->getDefaultValue(); |
| 60 | 63 | $parameterString .= ' = ' . match (true) { |
| 61 | 64 | \is_object($default) => 'new ' . $default::class . '(...)', |
@@ -16,8 +16,8 @@ |
||
| 16 | 16 | public function resolveAlias(string $alias): string |
| 17 | 17 | { |
| 18 | 18 | $antiCircleReference = []; |
| 19 | - while (isset($this->config, $this->config['aliases'][$alias]) && \is_string($alias)) { |
|
| 20 | - if (\in_array($alias, $antiCircleReference, true)) { |
|
| 19 | + while (isset($this->config, $this->config['aliases'][$alias]) && \is_string($alias)){ |
|
| 20 | + if (\in_array($alias, $antiCircleReference, true)){ |
|
| 21 | 21 | throw new ContainerException(\sprintf('Circle reference detected for alias `%s`.', $alias)); |
| 22 | 22 | } |
| 23 | 23 | $antiCircleReference[] = $alias; |
@@ -16,8 +16,10 @@ |
||
| 16 | 16 | public function resolveAlias(string $alias): string |
| 17 | 17 | { |
| 18 | 18 | $antiCircleReference = []; |
| 19 | - while (isset($this->config, $this->config['aliases'][$alias]) && \is_string($alias)) { |
|
| 20 | - if (\in_array($alias, $antiCircleReference, true)) { |
|
| 19 | + while (isset($this->config, $this->config['aliases'][$alias]) && \is_string($alias)) |
|
| 20 | + { |
|
| 21 | + if (\in_array($alias, $antiCircleReference, true)) |
|
| 22 | + { |
|
| 21 | 23 | throw new ContainerException(\sprintf('Circle reference detected for alias `%s`.', $alias)); |
| 22 | 24 | } |
| 23 | 25 | $antiCircleReference[] = $alias; |
@@ -23,5 +23,5 @@ |
||
| 23 | 23 | * |
| 24 | 24 | * @throws NotCallableException |
| 25 | 25 | */ |
| 26 | - public function invoke(array|callable|string $target, array $parameters = []): mixed; |
|
| 26 | + public function invoke(array | callable | string $target, array $parameters = []): mixed; |
|
| 27 | 27 | } |
@@ -48,7 +48,7 @@ |
||
| 48 | 48 | |
| 49 | 49 | public function offsetGet(mixed $offset): mixed |
| 50 | 50 | { |
| 51 | - if (!$this->offsetExists($offset)) { |
|
| 51 | + if (!$this->offsetExists($offset)){ |
|
| 52 | 52 | throw new ConfigException(\sprintf("Undefined configuration key '%s'", $offset)); |
| 53 | 53 | } |
| 54 | 54 | |
@@ -48,7 +48,8 @@ |
||
| 48 | 48 | |
| 49 | 49 | public function offsetGet(mixed $offset): mixed |
| 50 | 50 | { |
| 51 | - if (!$this->offsetExists($offset)) { |
|
| 51 | + if (!$this->offsetExists($offset)) |
|
| 52 | + { |
|
| 52 | 53 | throw new ConfigException(\sprintf("Undefined configuration key '%s'", $offset)); |
| 53 | 54 | } |
| 54 | 55 | |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | * |
| 21 | 21 | * @psalm-param TResolver $resolver |
| 22 | 22 | */ |
| 23 | - public function bind(string $alias, string|array|callable|object $resolver): void; |
|
| 23 | + public function bind(string $alias, string | array | callable | object $resolver): void; |
|
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | 26 | * Bind value resolver to container alias to be executed as cached. Resolver can be class name |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | * @param TResolver $resolver Can be result object or |
| 30 | 30 | * the same special callable value like the $target parameter in the {@see InvokerInterface::invoke()} method |
| 31 | 31 | */ |
| 32 | - public function bindSingleton(string $alias, string|array|callable|object $resolver): void; |
|
| 32 | + public function bindSingleton(string $alias, string | array | callable | object $resolver): void; |
|
| 33 | 33 | |
| 34 | 34 | /** |
| 35 | 35 | * Check if alias points to constructed instance (singleton). |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | private ?string $replyTo = null; |
| 16 | 16 | private array $options = []; |
| 17 | 17 | |
| 18 | - public function __construct(string $subject, string|array $to, array $data = []) |
|
| 18 | + public function __construct(string $subject, string | array $to, array $data = []) |
|
| 19 | 19 | { |
| 20 | 20 | $this->setSubject($subject); |
| 21 | 21 | $this->setTo(...(array)$to); |
@@ -125,13 +125,13 @@ discard block |
||
| 125 | 125 | return $this->options; |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - public function setDelay(\DateInterval|\DateTimeInterface|int $delay): self |
|
| 128 | + public function setDelay(\DateInterval | \DateTimeInterface | int $delay): self |
|
| 129 | 129 | { |
| 130 | - if ($delay instanceof \DateInterval) { |
|
| 130 | + if ($delay instanceof \DateInterval){ |
|
| 131 | 131 | $delay = (new \DateTimeImmutable('NOW'))->add($delay); |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | - if ($delay instanceof \DateTimeInterface) { |
|
| 134 | + if ($delay instanceof \DateTimeInterface){ |
|
| 135 | 135 | $delay = \max(0, $delay->getTimestamp() - \time()); |
| 136 | 136 | } |
| 137 | 137 | |
@@ -127,11 +127,13 @@ |
||
| 127 | 127 | |
| 128 | 128 | public function setDelay(\DateInterval|\DateTimeInterface|int $delay): self |
| 129 | 129 | { |
| 130 | - if ($delay instanceof \DateInterval) { |
|
| 130 | + if ($delay instanceof \DateInterval) |
|
| 131 | + { |
|
| 131 | 132 | $delay = (new \DateTimeImmutable('NOW'))->add($delay); |
| 132 | 133 | } |
| 133 | 134 | |
| 134 | - if ($delay instanceof \DateTimeInterface) { |
|
| 135 | + if ($delay instanceof \DateTimeInterface) |
|
| 136 | + { |
|
| 135 | 137 | $delay = \max(0, $delay->getTimestamp() - \time()); |
| 136 | 138 | } |
| 137 | 139 | |
@@ -34,18 +34,18 @@ discard block |
||
| 34 | 34 | public function __construct( |
| 35 | 35 | private readonly ResponseFactoryInterface $responseFactory, |
| 36 | 36 | private readonly array $allowMethods = self::ALLOW_METHODS |
| 37 | - ) { |
|
| 37 | + ){ |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | public function process(Request $request, RequestHandlerInterface $handler): Response |
| 41 | 41 | { |
| 42 | 42 | $token = $request->getAttribute(CsrfMiddleware::ATTRIBUTE); |
| 43 | 43 | |
| 44 | - if (empty($token)) { |
|
| 44 | + if (empty($token)){ |
|
| 45 | 45 | throw new \LogicException('Unable to apply CSRF firewall, attribute is missing'); |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - if ($this->isRequired($request) && !\hash_equals($token, $this->fetchToken($request))) { |
|
| 48 | + if ($this->isRequired($request) && !\hash_equals($token, $this->fetchToken($request))){ |
|
| 49 | 49 | return $this->responseFactory->createResponse(412, 'Bad CSRF Token'); |
| 50 | 50 | } |
| 51 | 51 | |
@@ -65,12 +65,12 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | protected function fetchToken(Request $request): string |
| 67 | 67 | { |
| 68 | - if ($request->hasHeader(self::HEADER)) { |
|
| 68 | + if ($request->hasHeader(self::HEADER)){ |
|
| 69 | 69 | return $request->getHeaderLine(self::HEADER); |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | $data = $request->getParsedBody(); |
| 73 | - if (\is_array($data) && isset($data[self::PARAMETER]) && \is_string($data[self::PARAMETER])) { |
|
| 73 | + if (\is_array($data) && isset($data[self::PARAMETER]) && \is_string($data[self::PARAMETER])){ |
|
| 74 | 74 | return $data[self::PARAMETER]; |
| 75 | 75 | } |
| 76 | 76 | |
@@ -41,11 +41,13 @@ discard block |
||
| 41 | 41 | { |
| 42 | 42 | $token = $request->getAttribute(CsrfMiddleware::ATTRIBUTE); |
| 43 | 43 | |
| 44 | - if (empty($token)) { |
|
| 44 | + if (empty($token)) |
|
| 45 | + { |
|
| 45 | 46 | throw new \LogicException('Unable to apply CSRF firewall, attribute is missing'); |
| 46 | 47 | } |
| 47 | 48 | |
| 48 | - if ($this->isRequired($request) && !\hash_equals($token, $this->fetchToken($request))) { |
|
| 49 | + if ($this->isRequired($request) && !\hash_equals($token, $this->fetchToken($request))) |
|
| 50 | + { |
|
| 49 | 51 | return $this->responseFactory->createResponse(412, 'Bad CSRF Token'); |
| 50 | 52 | } |
| 51 | 53 | |
@@ -65,12 +67,14 @@ discard block |
||
| 65 | 67 | */ |
| 66 | 68 | protected function fetchToken(Request $request): string |
| 67 | 69 | { |
| 68 | - if ($request->hasHeader(self::HEADER)) { |
|
| 70 | + if ($request->hasHeader(self::HEADER)) |
|
| 71 | + { |
|
| 69 | 72 | return $request->getHeaderLine(self::HEADER); |
| 70 | 73 | } |
| 71 | 74 | |
| 72 | 75 | $data = $request->getParsedBody(); |
| 73 | - if (\is_array($data) && isset($data[self::PARAMETER]) && \is_string($data[self::PARAMETER])) { |
|
| 76 | + if (\is_array($data) && isset($data[self::PARAMETER]) && \is_string($data[self::PARAMETER])) |
|
| 77 | + { |
|
| 74 | 78 | return $data[self::PARAMETER]; |
| 75 | 79 | } |
| 76 | 80 | |
@@ -25,15 +25,15 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | public function __construct( |
| 27 | 27 | private readonly CsrfConfig $config |
| 28 | - ) { |
|
| 28 | + ){ |
|
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | public function process(Request $request, RequestHandlerInterface $handler): Response |
| 32 | 32 | { |
| 33 | 33 | $cookie = null; |
| 34 | - if (isset($request->getCookieParams()[$this->config->getCookie()])) { |
|
| 34 | + if (isset($request->getCookieParams()[$this->config->getCookie()])){ |
|
| 35 | 35 | $token = $request->getCookieParams()[$this->config->getCookie()]; |
| 36 | - } else { |
|
| 36 | + }else{ |
|
| 37 | 37 | //Making new token |
| 38 | 38 | $token = $this->random($this->config->getTokenLength()); |
| 39 | 39 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | //CSRF issues must be handled by Firewall middleware |
| 45 | 45 | $response = $handler->handle($request->withAttribute(static::ATTRIBUTE, $token)); |
| 46 | 46 | |
| 47 | - if (!empty($cookie)) { |
|
| 47 | + if (!empty($cookie)){ |
|
| 48 | 48 | return $response->withAddedHeader('Set-Cookie', $cookie); |
| 49 | 49 | } |
| 50 | 50 | |
@@ -75,12 +75,12 @@ discard block |
||
| 75 | 75 | */ |
| 76 | 76 | private function random(int $length = 32): string |
| 77 | 77 | { |
| 78 | - try { |
|
| 79 | - if (empty($string = random_bytes($length))) { |
|
| 78 | + try{ |
|
| 79 | + if (empty($string = random_bytes($length))){ |
|
| 80 | 80 | throw new \RuntimeException('Unable to generate random string'); |
| 81 | 81 | } |
| 82 | - } catch (\Throwable $e) { |
|
| 83 | - throw new \RuntimeException('Unable to generate random string', (int) $e->getCode(), $e); |
|
| 82 | + }catch (\Throwable $e){ |
|
| 83 | + throw new \RuntimeException('Unable to generate random string', (int)$e->getCode(), $e); |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | return \substr(\base64_encode($string), 0, $length); |
@@ -31,9 +31,12 @@ discard block |
||
| 31 | 31 | public function process(Request $request, RequestHandlerInterface $handler): Response |
| 32 | 32 | { |
| 33 | 33 | $cookie = null; |
| 34 | - if (isset($request->getCookieParams()[$this->config->getCookie()])) { |
|
| 34 | + if (isset($request->getCookieParams()[$this->config->getCookie()])) |
|
| 35 | + { |
|
| 35 | 36 | $token = $request->getCookieParams()[$this->config->getCookie()]; |
| 36 | - } else { |
|
| 37 | + } |
|
| 38 | + else |
|
| 39 | + { |
|
| 37 | 40 | //Making new token |
| 38 | 41 | $token = $this->random($this->config->getTokenLength()); |
| 39 | 42 | |
@@ -44,7 +47,8 @@ discard block |
||
| 44 | 47 | //CSRF issues must be handled by Firewall middleware |
| 45 | 48 | $response = $handler->handle($request->withAttribute(static::ATTRIBUTE, $token)); |
| 46 | 49 | |
| 47 | - if (!empty($cookie)) { |
|
| 50 | + if (!empty($cookie)) |
|
| 51 | + { |
|
| 48 | 52 | return $response->withAddedHeader('Set-Cookie', $cookie); |
| 49 | 53 | } |
| 50 | 54 | |
@@ -75,11 +79,15 @@ discard block |
||
| 75 | 79 | */ |
| 76 | 80 | private function random(int $length = 32): string |
| 77 | 81 | { |
| 78 | - try { |
|
| 79 | - if (empty($string = random_bytes($length))) { |
|
| 82 | + try |
|
| 83 | + { |
|
| 84 | + if (empty($string = random_bytes($length))) |
|
| 85 | + { |
|
| 80 | 86 | throw new \RuntimeException('Unable to generate random string'); |
| 81 | 87 | } |
| 82 | - } catch (\Throwable $e) { |
|
| 88 | + } |
|
| 89 | + catch (\Throwable $e) |
|
| 90 | + { |
|
| 83 | 91 | throw new \RuntimeException('Unable to generate random string', (int) $e->getCode(), $e); |
| 84 | 92 | } |
| 85 | 93 | |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | public function stream_eof(): bool |
| 45 | 45 | { |
| 46 | - if ($this->stream === null) { |
|
| 46 | + if ($this->stream === null){ |
|
| 47 | 47 | throw new WrapperException('Stream is not opened.'); |
| 48 | 48 | } |
| 49 | 49 | |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | */ |
| 56 | 56 | public function stream_open(string $path, string $mode, int $options, ?string &$opened_path): bool |
| 57 | 57 | { |
| 58 | - if (!isset(self::$uris[$path])) { |
|
| 58 | + if (!isset(self::$uris[$path])){ |
|
| 59 | 59 | return false; |
| 60 | 60 | } |
| 61 | 61 | |
@@ -70,9 +70,9 @@ discard block |
||
| 70 | 70 | /** |
| 71 | 71 | * Read data from StreamInterface. |
| 72 | 72 | */ |
| 73 | - public function stream_read(int $length): string|false |
|
| 73 | + public function stream_read(int $length): string | false |
|
| 74 | 74 | { |
| 75 | - if ($this->stream === null) { |
|
| 75 | + if ($this->stream === null){ |
|
| 76 | 76 | throw new WrapperException('Stream is not opened.'); |
| 77 | 77 | } |
| 78 | 78 | |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | */ |
| 85 | 85 | public function stream_seek(int $offset, int $whence = SEEK_SET): bool |
| 86 | 86 | { |
| 87 | - if ($this->stream === null) { |
|
| 87 | + if ($this->stream === null){ |
|
| 88 | 88 | throw new WrapperException('Stream is not opened.'); |
| 89 | 89 | } |
| 90 | 90 | |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | */ |
| 103 | 103 | public function stream_stat(): array |
| 104 | 104 | { |
| 105 | - if ($this->stream === null) { |
|
| 105 | + if ($this->stream === null){ |
|
| 106 | 106 | throw new WrapperException('Stream is not opened.'); |
| 107 | 107 | } |
| 108 | 108 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | public function stream_tell(): int |
| 116 | 116 | { |
| 117 | - if ($this->stream === null) { |
|
| 117 | + if ($this->stream === null){ |
|
| 118 | 118 | throw new WrapperException('Stream is not opened.'); |
| 119 | 119 | } |
| 120 | 120 | |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | */ |
| 129 | 129 | public function stream_write(string $data): int |
| 130 | 130 | { |
| 131 | - if ($this->stream === null) { |
|
| 131 | + if ($this->stream === null){ |
|
| 132 | 132 | throw new WrapperException('Stream is not opened.'); |
| 133 | 133 | } |
| 134 | 134 | |
@@ -140,14 +140,14 @@ discard block |
||
| 140 | 140 | * |
| 141 | 141 | * @see stat() |
| 142 | 142 | */ |
| 143 | - public function url_stat(string $path, int $flag): array|false |
|
| 143 | + public function url_stat(string $path, int $flag): array | false |
|
| 144 | 144 | { |
| 145 | - try { |
|
| 146 | - if (isset(self::$uris[$path])) { |
|
| 145 | + try{ |
|
| 146 | + if (isset(self::$uris[$path])){ |
|
| 147 | 147 | return $this->getStreamStats(self::$uris[$path]); |
| 148 | 148 | } |
| 149 | - } catch (\Throwable $e) { |
|
| 150 | - if (($flag & \STREAM_URL_STAT_QUIET) === \STREAM_URL_STAT_QUIET) { |
|
| 149 | + }catch (\Throwable $e){ |
|
| 150 | + if (($flag & \STREAM_URL_STAT_QUIET) === \STREAM_URL_STAT_QUIET){ |
|
| 151 | 151 | return false; |
| 152 | 152 | } |
| 153 | 153 | \trigger_error($e->getMessage(), \E_USER_ERROR); |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | */ |
| 162 | 162 | public static function register(): void |
| 163 | 163 | { |
| 164 | - if (self::$registered) { |
|
| 164 | + if (self::$registered){ |
|
| 165 | 165 | return; |
| 166 | 166 | } |
| 167 | 167 | |
@@ -173,10 +173,10 @@ discard block |
||
| 173 | 173 | /** |
| 174 | 174 | * Check if given uri or stream has been allocated. |
| 175 | 175 | */ |
| 176 | - public static function has(StreamInterface|string $file): bool |
|
| 176 | + public static function has(StreamInterface | string $file): bool |
|
| 177 | 177 | { |
| 178 | - if ($file instanceof StreamInterface) { |
|
| 179 | - $file = 'spiral://' . \spl_object_hash($file); |
|
| 178 | + if ($file instanceof StreamInterface){ |
|
| 179 | + $file = 'spiral://'.\spl_object_hash($file); |
|
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | return isset(self::$uris[$file]); |
@@ -191,15 +191,15 @@ discard block |
||
| 191 | 191 | public static function getResource(StreamInterface $stream) |
| 192 | 192 | { |
| 193 | 193 | $mode = null; |
| 194 | - if ($stream->isReadable()) { |
|
| 194 | + if ($stream->isReadable()){ |
|
| 195 | 195 | $mode = 'r'; |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | - if ($stream->isWritable()) { |
|
| 198 | + if ($stream->isWritable()){ |
|
| 199 | 199 | $mode = !empty($mode) ? 'r+' : 'w'; |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | - if (empty($mode)) { |
|
| 202 | + if (empty($mode)){ |
|
| 203 | 203 | throw new WrapperException('Stream is not available in read or write modes'); |
| 204 | 204 | } |
| 205 | 205 | |
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | { |
| 214 | 214 | self::register(); |
| 215 | 215 | |
| 216 | - $uri = 'spiral://' . \spl_object_hash($stream); |
|
| 216 | + $uri = 'spiral://'.\spl_object_hash($stream); |
|
| 217 | 217 | self::$uris[$uri] = $stream; |
| 218 | 218 | |
| 219 | 219 | return $uri; |
@@ -225,10 +225,10 @@ discard block |
||
| 225 | 225 | * |
| 226 | 226 | * @param string|StreamInterface $file String uri or StreamInterface. |
| 227 | 227 | */ |
| 228 | - public static function release(StreamInterface|string $file): void |
|
| 228 | + public static function release(StreamInterface | string $file): void |
|
| 229 | 229 | { |
| 230 | - if ($file instanceof StreamInterface) { |
|
| 231 | - $file = 'spiral://' . \spl_object_hash($file); |
|
| 230 | + if ($file instanceof StreamInterface){ |
|
| 231 | + $file = 'spiral://'.\spl_object_hash($file); |
|
| 232 | 232 | } |
| 233 | 233 | |
| 234 | 234 | unset(self::$uris[$file]); |
@@ -240,12 +240,12 @@ discard block |
||
| 240 | 240 | private function getStreamStats(StreamInterface $stream): array |
| 241 | 241 | { |
| 242 | 242 | $mode = $this->mode; |
| 243 | - if (empty($mode)) { |
|
| 244 | - if ($stream->isReadable()) { |
|
| 243 | + if (empty($mode)){ |
|
| 244 | + if ($stream->isReadable()){ |
|
| 245 | 245 | $mode = 'r'; |
| 246 | 246 | } |
| 247 | 247 | |
| 248 | - if ($stream->isWritable()) { |
|
| 248 | + if ($stream->isWritable()){ |
|
| 249 | 249 | $mode = !empty($mode) ? 'r+' : 'w'; |
| 250 | 250 | } |
| 251 | 251 | } |
@@ -43,7 +43,8 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | public function stream_eof(): bool |
| 45 | 45 | { |
| 46 | - if ($this->stream === null) { |
|
| 46 | + if ($this->stream === null) |
|
| 47 | + { |
|
| 47 | 48 | throw new WrapperException('Stream is not opened.'); |
| 48 | 49 | } |
| 49 | 50 | |
@@ -55,7 +56,8 @@ discard block |
||
| 55 | 56 | */ |
| 56 | 57 | public function stream_open(string $path, string $mode, int $options, ?string &$opened_path): bool |
| 57 | 58 | { |
| 58 | - if (!isset(self::$uris[$path])) { |
|
| 59 | + if (!isset(self::$uris[$path])) |
|
| 60 | + { |
|
| 59 | 61 | return false; |
| 60 | 62 | } |
| 61 | 63 | |
@@ -72,7 +74,8 @@ discard block |
||
| 72 | 74 | */ |
| 73 | 75 | public function stream_read(int $length): string|false |
| 74 | 76 | { |
| 75 | - if ($this->stream === null) { |
|
| 77 | + if ($this->stream === null) |
|
| 78 | + { |
|
| 76 | 79 | throw new WrapperException('Stream is not opened.'); |
| 77 | 80 | } |
| 78 | 81 | |
@@ -84,7 +87,8 @@ discard block |
||
| 84 | 87 | */ |
| 85 | 88 | public function stream_seek(int $offset, int $whence = SEEK_SET): bool |
| 86 | 89 | { |
| 87 | - if ($this->stream === null) { |
|
| 90 | + if ($this->stream === null) |
|
| 91 | + { |
|
| 88 | 92 | throw new WrapperException('Stream is not opened.'); |
| 89 | 93 | } |
| 90 | 94 | |
@@ -102,7 +106,8 @@ discard block |
||
| 102 | 106 | */ |
| 103 | 107 | public function stream_stat(): array |
| 104 | 108 | { |
| 105 | - if ($this->stream === null) { |
|
| 109 | + if ($this->stream === null) |
|
| 110 | + { |
|
| 106 | 111 | throw new WrapperException('Stream is not opened.'); |
| 107 | 112 | } |
| 108 | 113 | |
@@ -114,7 +119,8 @@ discard block |
||
| 114 | 119 | */ |
| 115 | 120 | public function stream_tell(): int |
| 116 | 121 | { |
| 117 | - if ($this->stream === null) { |
|
| 122 | + if ($this->stream === null) |
|
| 123 | + { |
|
| 118 | 124 | throw new WrapperException('Stream is not opened.'); |
| 119 | 125 | } |
| 120 | 126 | |
@@ -128,7 +134,8 @@ discard block |
||
| 128 | 134 | */ |
| 129 | 135 | public function stream_write(string $data): int |
| 130 | 136 | { |
| 131 | - if ($this->stream === null) { |
|
| 137 | + if ($this->stream === null) |
|
| 138 | + { |
|
| 132 | 139 | throw new WrapperException('Stream is not opened.'); |
| 133 | 140 | } |
| 134 | 141 | |
@@ -142,12 +149,17 @@ discard block |
||
| 142 | 149 | */ |
| 143 | 150 | public function url_stat(string $path, int $flag): array|false |
| 144 | 151 | { |
| 145 | - try { |
|
| 146 | - if (isset(self::$uris[$path])) { |
|
| 152 | + try |
|
| 153 | + { |
|
| 154 | + if (isset(self::$uris[$path])) |
|
| 155 | + { |
|
| 147 | 156 | return $this->getStreamStats(self::$uris[$path]); |
| 148 | 157 | } |
| 149 | - } catch (\Throwable $e) { |
|
| 150 | - if (($flag & \STREAM_URL_STAT_QUIET) === \STREAM_URL_STAT_QUIET) { |
|
| 158 | + } |
|
| 159 | + catch (\Throwable $e) |
|
| 160 | + { |
|
| 161 | + if (($flag & \STREAM_URL_STAT_QUIET) === \STREAM_URL_STAT_QUIET) |
|
| 162 | + { |
|
| 151 | 163 | return false; |
| 152 | 164 | } |
| 153 | 165 | \trigger_error($e->getMessage(), \E_USER_ERROR); |
@@ -161,7 +173,8 @@ discard block |
||
| 161 | 173 | */ |
| 162 | 174 | public static function register(): void |
| 163 | 175 | { |
| 164 | - if (self::$registered) { |
|
| 176 | + if (self::$registered) |
|
| 177 | + { |
|
| 165 | 178 | return; |
| 166 | 179 | } |
| 167 | 180 | |
@@ -175,7 +188,8 @@ discard block |
||
| 175 | 188 | */ |
| 176 | 189 | public static function has(StreamInterface|string $file): bool |
| 177 | 190 | { |
| 178 | - if ($file instanceof StreamInterface) { |
|
| 191 | + if ($file instanceof StreamInterface) |
|
| 192 | + { |
|
| 179 | 193 | $file = 'spiral://' . \spl_object_hash($file); |
| 180 | 194 | } |
| 181 | 195 | |
@@ -191,15 +205,18 @@ discard block |
||
| 191 | 205 | public static function getResource(StreamInterface $stream) |
| 192 | 206 | { |
| 193 | 207 | $mode = null; |
| 194 | - if ($stream->isReadable()) { |
|
| 208 | + if ($stream->isReadable()) |
|
| 209 | + { |
|
| 195 | 210 | $mode = 'r'; |
| 196 | 211 | } |
| 197 | 212 | |
| 198 | - if ($stream->isWritable()) { |
|
| 213 | + if ($stream->isWritable()) |
|
| 214 | + { |
|
| 199 | 215 | $mode = !empty($mode) ? 'r+' : 'w'; |
| 200 | 216 | } |
| 201 | 217 | |
| 202 | - if (empty($mode)) { |
|
| 218 | + if (empty($mode)) |
|
| 219 | + { |
|
| 203 | 220 | throw new WrapperException('Stream is not available in read or write modes'); |
| 204 | 221 | } |
| 205 | 222 | |
@@ -227,7 +244,8 @@ discard block |
||
| 227 | 244 | */ |
| 228 | 245 | public static function release(StreamInterface|string $file): void |
| 229 | 246 | { |
| 230 | - if ($file instanceof StreamInterface) { |
|
| 247 | + if ($file instanceof StreamInterface) |
|
| 248 | + { |
|
| 231 | 249 | $file = 'spiral://' . \spl_object_hash($file); |
| 232 | 250 | } |
| 233 | 251 | |
@@ -240,12 +258,15 @@ discard block |
||
| 240 | 258 | private function getStreamStats(StreamInterface $stream): array |
| 241 | 259 | { |
| 242 | 260 | $mode = $this->mode; |
| 243 | - if (empty($mode)) { |
|
| 244 | - if ($stream->isReadable()) { |
|
| 261 | + if (empty($mode)) |
|
| 262 | + { |
|
| 263 | + if ($stream->isReadable()) |
|
| 264 | + { |
|
| 245 | 265 | $mode = 'r'; |
| 246 | 266 | } |
| 247 | 267 | |
| 248 | - if ($stream->isWritable()) { |
|
| 268 | + if ($stream->isWritable()) |
|
| 269 | + { |
|
| 249 | 270 | $mode = !empty($mode) ? 'r+' : 'w'; |
| 250 | 271 | } |
| 251 | 272 | } |