@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | */ |
| 39 | 39 | public function get(string $name): Parameter |
| 40 | 40 | { |
| 41 | - if (!$this->has($name)) { |
|
| 41 | + if (!$this->has($name)){ |
|
| 42 | 42 | //Automatically creating constant |
| 43 | 43 | $parameter = new Parameter($name); |
| 44 | 44 | $this->add($parameter); |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * Overwriting parent call. |
| 59 | 59 | */ |
| 60 | 60 | $parameters = []; |
| 61 | - foreach ($this->getIterator() as $element) { |
|
| 61 | + foreach ($this->getIterator() as $element){ |
|
| 62 | 62 | $parameters[] = $element->render(0); |
| 63 | 63 | } |
| 64 | 64 | |
@@ -38,7 +38,8 @@ discard block |
||
| 38 | 38 | */ |
| 39 | 39 | public function get(string $name): Parameter |
| 40 | 40 | { |
| 41 | - if (!$this->has($name)) { |
|
| 41 | + if (!$this->has($name)) |
|
| 42 | + { |
|
| 42 | 43 | //Automatically creating constant |
| 43 | 44 | $parameter = new Parameter($name); |
| 44 | 45 | $this->add($parameter); |
@@ -58,7 +59,8 @@ discard block |
||
| 58 | 59 | * Overwriting parent call. |
| 59 | 60 | */ |
| 60 | 61 | $parameters = []; |
| 61 | - foreach ($this->getIterator() as $element) { |
|
| 62 | + foreach ($this->getIterator() as $element) |
|
| 63 | + { |
|
| 62 | 64 | $parameters[] = $element->render(0); |
| 63 | 65 | } |
| 64 | 66 | |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | */ |
| 39 | 39 | public function get(string $name): Constant |
| 40 | 40 | { |
| 41 | - if (!$this->has($name)) { |
|
| 41 | + if (!$this->has($name)){ |
|
| 42 | 42 | $constant = new Constant($name, null); |
| 43 | 43 | $this->add($constant); |
| 44 | 44 | |
@@ -38,7 +38,8 @@ |
||
| 38 | 38 | */ |
| 39 | 39 | public function get(string $name): Constant |
| 40 | 40 | { |
| 41 | - if (!$this->has($name)) { |
|
| 41 | + if (!$this->has($name)) |
|
| 42 | + { |
|
| 42 | 43 | $constant = new Constant($name, null); |
| 43 | 44 | $this->add($constant); |
| 44 | 45 | |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | */ |
| 39 | 39 | public function get(string $name): Property |
| 40 | 40 | { |
| 41 | - if (!$this->has($name)) { |
|
| 41 | + if (!$this->has($name)){ |
|
| 42 | 42 | //Automatically creating constant |
| 43 | 43 | $property = new Property($name); |
| 44 | 44 | $this->add($property); |
@@ -38,7 +38,8 @@ |
||
| 38 | 38 | */ |
| 39 | 39 | public function get(string $name): Property |
| 40 | 40 | { |
| 41 | - if (!$this->has($name)) { |
|
| 41 | + if (!$this->has($name)) |
|
| 42 | + { |
|
| 42 | 43 | //Automatically creating constant |
| 43 | 44 | $property = new Property($name); |
| 44 | 45 | $this->add($property); |
@@ -44,15 +44,15 @@ discard block |
||
| 44 | 44 | 'namespaces' => $config->getNamespaces(), |
| 45 | 45 | ]); |
| 46 | 46 | |
| 47 | - foreach ($this->config->getDependencies() as $dependency) { |
|
| 47 | + foreach ($this->config->getDependencies() as $dependency){ |
|
| 48 | 48 | $this->addDependency($dependency->resolve($factory)); |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - foreach ($this->config->getEngines() as $engine) { |
|
| 51 | + foreach ($this->config->getEngines() as $engine){ |
|
| 52 | 52 | $this->addEngine($engine->resolve($factory)); |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - if ($this->config->isCacheEnabled()) { |
|
| 55 | + if ($this->config->isCacheEnabled()){ |
|
| 56 | 56 | $this->cache = new ViewCache(); |
| 57 | 57 | } |
| 58 | 58 | } |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | { |
| 85 | 85 | $this->engines[] = $engine->withLoader($this->loader); |
| 86 | 86 | |
| 87 | - uasort($this->engines, function (EngineInterface $a, EngineInterface $b) { |
|
| 87 | + uasort($this->engines, function (EngineInterface $a, EngineInterface $b){ |
|
| 88 | 88 | return strcmp($a->getLoader()->getExtension(), $b->getLoader()->getExtension()); |
| 89 | 89 | }); |
| 90 | 90 | |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | */ |
| 111 | 111 | public function compile(string $path): void |
| 112 | 112 | { |
| 113 | - if ($this->cache !== null) { |
|
| 113 | + if ($this->cache !== null){ |
|
| 114 | 114 | $this->cache->resetPath($path); |
| 115 | 115 | } |
| 116 | 116 | |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | |
| 119 | 119 | // Rotate all possible context variants and warm up cache |
| 120 | 120 | $generator = new ContextGenerator($this->context); |
| 121 | - foreach ($generator->generate() as $context) { |
|
| 121 | + foreach ($generator->generate() as $context){ |
|
| 122 | 122 | $engine->reset($path, $context); |
| 123 | 123 | $engine->compile($path, $context); |
| 124 | 124 | } |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | */ |
| 132 | 132 | public function reset(string $path): void |
| 133 | 133 | { |
| 134 | - if ($this->cache !== null) { |
|
| 134 | + if ($this->cache !== null){ |
|
| 135 | 135 | $this->cache->resetPath($path); |
| 136 | 136 | } |
| 137 | 137 | |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | |
| 140 | 140 | // Rotate all possible context variants and warm up cache |
| 141 | 141 | $generator = new ContextGenerator($this->context); |
| 142 | - foreach ($generator->generate() as $context) { |
|
| 142 | + foreach ($generator->generate() as $context){ |
|
| 143 | 143 | $engine->reset($path, $context); |
| 144 | 144 | } |
| 145 | 145 | } |
@@ -154,13 +154,13 @@ discard block |
||
| 154 | 154 | */ |
| 155 | 155 | public function get(string $path): ViewInterface |
| 156 | 156 | { |
| 157 | - if ($this->cache !== null && $this->cache->has($this->context, $path)) { |
|
| 157 | + if ($this->cache !== null && $this->cache->has($this->context, $path)){ |
|
| 158 | 158 | return $this->cache->get($this->context, $path); |
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | $view = $this->findEngine($path)->get($path, $this->context); |
| 162 | 162 | |
| 163 | - if ($this->cache !== null) { |
|
| 163 | + if ($this->cache !== null){ |
|
| 164 | 164 | $this->cache->set($this->context, $path, $view); |
| 165 | 165 | } |
| 166 | 166 | |
@@ -187,8 +187,8 @@ discard block |
||
| 187 | 187 | */ |
| 188 | 188 | protected function findEngine(string $path): EngineInterface |
| 189 | 189 | { |
| 190 | - foreach ($this->engines as $engine) { |
|
| 191 | - if ($engine->getLoader()->exists($path)) { |
|
| 190 | + foreach ($this->engines as $engine){ |
|
| 191 | + if ($engine->getLoader()->exists($path)){ |
|
| 192 | 192 | return $engine; |
| 193 | 193 | } |
| 194 | 194 | } |
@@ -44,15 +44,18 @@ discard block |
||
| 44 | 44 | 'namespaces' => $config->getNamespaces(), |
| 45 | 45 | ]); |
| 46 | 46 | |
| 47 | - foreach ($this->config->getDependencies() as $dependency) { |
|
| 47 | + foreach ($this->config->getDependencies() as $dependency) |
|
| 48 | + { |
|
| 48 | 49 | $this->addDependency($dependency->resolve($factory)); |
| 49 | 50 | } |
| 50 | 51 | |
| 51 | - foreach ($this->config->getEngines() as $engine) { |
|
| 52 | + foreach ($this->config->getEngines() as $engine) |
|
| 53 | + { |
|
| 52 | 54 | $this->addEngine($engine->resolve($factory)); |
| 53 | 55 | } |
| 54 | 56 | |
| 55 | - if ($this->config->isCacheEnabled()) { |
|
| 57 | + if ($this->config->isCacheEnabled()) |
|
| 58 | + { |
|
| 56 | 59 | $this->cache = new ViewCache(); |
| 57 | 60 | } |
| 58 | 61 | } |
@@ -84,7 +87,8 @@ discard block |
||
| 84 | 87 | { |
| 85 | 88 | $this->engines[] = $engine->withLoader($this->loader); |
| 86 | 89 | |
| 87 | - uasort($this->engines, function (EngineInterface $a, EngineInterface $b) { |
|
| 90 | + uasort($this->engines, function (EngineInterface $a, EngineInterface $b) |
|
| 91 | + { |
|
| 88 | 92 | return strcmp($a->getLoader()->getExtension(), $b->getLoader()->getExtension()); |
| 89 | 93 | }); |
| 90 | 94 | |
@@ -110,7 +114,8 @@ discard block |
||
| 110 | 114 | */ |
| 111 | 115 | public function compile(string $path): void |
| 112 | 116 | { |
| 113 | - if ($this->cache !== null) { |
|
| 117 | + if ($this->cache !== null) |
|
| 118 | + { |
|
| 114 | 119 | $this->cache->resetPath($path); |
| 115 | 120 | } |
| 116 | 121 | |
@@ -118,7 +123,8 @@ discard block |
||
| 118 | 123 | |
| 119 | 124 | // Rotate all possible context variants and warm up cache |
| 120 | 125 | $generator = new ContextGenerator($this->context); |
| 121 | - foreach ($generator->generate() as $context) { |
|
| 126 | + foreach ($generator->generate() as $context) |
|
| 127 | + { |
|
| 122 | 128 | $engine->reset($path, $context); |
| 123 | 129 | $engine->compile($path, $context); |
| 124 | 130 | } |
@@ -131,7 +137,8 @@ discard block |
||
| 131 | 137 | */ |
| 132 | 138 | public function reset(string $path): void |
| 133 | 139 | { |
| 134 | - if ($this->cache !== null) { |
|
| 140 | + if ($this->cache !== null) |
|
| 141 | + { |
|
| 135 | 142 | $this->cache->resetPath($path); |
| 136 | 143 | } |
| 137 | 144 | |
@@ -139,7 +146,8 @@ discard block |
||
| 139 | 146 | |
| 140 | 147 | // Rotate all possible context variants and warm up cache |
| 141 | 148 | $generator = new ContextGenerator($this->context); |
| 142 | - foreach ($generator->generate() as $context) { |
|
| 149 | + foreach ($generator->generate() as $context) |
|
| 150 | + { |
|
| 143 | 151 | $engine->reset($path, $context); |
| 144 | 152 | } |
| 145 | 153 | } |
@@ -154,13 +162,15 @@ discard block |
||
| 154 | 162 | */ |
| 155 | 163 | public function get(string $path): ViewInterface |
| 156 | 164 | { |
| 157 | - if ($this->cache !== null && $this->cache->has($this->context, $path)) { |
|
| 165 | + if ($this->cache !== null && $this->cache->has($this->context, $path)) |
|
| 166 | + { |
|
| 158 | 167 | return $this->cache->get($this->context, $path); |
| 159 | 168 | } |
| 160 | 169 | |
| 161 | 170 | $view = $this->findEngine($path)->get($path, $this->context); |
| 162 | 171 | |
| 163 | - if ($this->cache !== null) { |
|
| 172 | + if ($this->cache !== null) |
|
| 173 | + { |
|
| 164 | 174 | $this->cache->set($this->context, $path, $view); |
| 165 | 175 | } |
| 166 | 176 | |
@@ -187,8 +197,10 @@ discard block |
||
| 187 | 197 | */ |
| 188 | 198 | protected function findEngine(string $path): EngineInterface |
| 189 | 199 | { |
| 190 | - foreach ($this->engines as $engine) { |
|
| 191 | - if ($engine->getLoader()->exists($path)) { |
|
| 200 | + foreach ($this->engines as $engine) |
|
| 201 | + { |
|
| 202 | + if ($engine->getLoader()->exists($path)) |
|
| 203 | + { |
|
| 192 | 204 | return $engine; |
| 193 | 205 | } |
| 194 | 206 | } |
@@ -63,7 +63,7 @@ |
||
| 63 | 63 | 'handler' => new Autowire( |
| 64 | 64 | FileHandler::class, |
| 65 | 65 | [ |
| 66 | - 'directory' => $directories->get('runtime') . 'session', |
|
| 66 | + 'directory' => $directories->get('runtime').'session', |
|
| 67 | 67 | 'lifetime' => 86400, |
| 68 | 68 | ] |
| 69 | 69 | ), |
@@ -34,13 +34,13 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | public function perform(DatabaseConfig $config, DatabaseManager $dbal): void |
| 36 | 36 | { |
| 37 | - if ($this->argument('db')) { |
|
| 37 | + if ($this->argument('db')){ |
|
| 38 | 38 | $databases = [$this->argument('db')]; |
| 39 | - } else { |
|
| 39 | + }else{ |
|
| 40 | 40 | $databases = array_keys($config->getDatabases()); |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - if (empty($databases)) { |
|
| 43 | + if (empty($databases)){ |
|
| 44 | 44 | $this->writeln('<fg=red>No databases found.</fg=red>'); |
| 45 | 45 | |
| 46 | 46 | return; |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | ] |
| 59 | 59 | ); |
| 60 | 60 | |
| 61 | - foreach ($databases as $database) { |
|
| 61 | + foreach ($databases as $database){ |
|
| 62 | 62 | $database = $dbal->database($database); |
| 63 | 63 | |
| 64 | 64 | /** @var Driver $driver */ |
@@ -71,12 +71,12 @@ discard block |
||
| 71 | 71 | $database->getPrefix() ?: '<comment>---</comment>', |
| 72 | 72 | ]; |
| 73 | 73 | |
| 74 | - try { |
|
| 74 | + try{ |
|
| 75 | 75 | $driver->connect(); |
| 76 | - } catch (\Exception $exception) { |
|
| 76 | + }catch (\Exception $exception){ |
|
| 77 | 77 | $this->renderException($grid, $header, $exception); |
| 78 | 78 | |
| 79 | - if ($database->getName() != end($databases)) { |
|
| 79 | + if ($database->getName() != end($databases)){ |
|
| 80 | 80 | $grid->addRow(new TableSeparator()); |
| 81 | 81 | } |
| 82 | 82 | |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | |
| 86 | 86 | $header[] = '<info>connected</info>'; |
| 87 | 87 | $this->renderTables($grid, $header, $database); |
| 88 | - if ($database->getName() != end($databases)) { |
|
| 88 | + if ($database->getName() != end($databases)){ |
|
| 89 | 89 | $grid->addRow(new TableSeparator()); |
| 90 | 90 | } |
| 91 | 91 | } |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | */ |
| 120 | 120 | private function renderTables(Table $grid, array $header, Database $database): void |
| 121 | 121 | { |
| 122 | - foreach ($database->getTables() as $table) { |
|
| 122 | + foreach ($database->getTables() as $table){ |
|
| 123 | 123 | $grid->addRow( |
| 124 | 124 | array_merge( |
| 125 | 125 | $header, |
@@ -34,13 +34,17 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | public function perform(DatabaseConfig $config, DatabaseManager $dbal): void |
| 36 | 36 | { |
| 37 | - if ($this->argument('db')) { |
|
| 37 | + if ($this->argument('db')) |
|
| 38 | + { |
|
| 38 | 39 | $databases = [$this->argument('db')]; |
| 39 | - } else { |
|
| 40 | + } |
|
| 41 | + else |
|
| 42 | + { |
|
| 40 | 43 | $databases = array_keys($config->getDatabases()); |
| 41 | 44 | } |
| 42 | 45 | |
| 43 | - if (empty($databases)) { |
|
| 46 | + if (empty($databases)) |
|
| 47 | + { |
|
| 44 | 48 | $this->writeln('<fg=red>No databases found.</fg=red>'); |
| 45 | 49 | |
| 46 | 50 | return; |
@@ -58,7 +62,8 @@ discard block |
||
| 58 | 62 | ] |
| 59 | 63 | ); |
| 60 | 64 | |
| 61 | - foreach ($databases as $database) { |
|
| 65 | + foreach ($databases as $database) |
|
| 66 | + { |
|
| 62 | 67 | $database = $dbal->database($database); |
| 63 | 68 | |
| 64 | 69 | /** @var Driver $driver */ |
@@ -71,12 +76,16 @@ discard block |
||
| 71 | 76 | $database->getPrefix() ?: '<comment>---</comment>', |
| 72 | 77 | ]; |
| 73 | 78 | |
| 74 | - try { |
|
| 79 | + try |
|
| 80 | + { |
|
| 75 | 81 | $driver->connect(); |
| 76 | - } catch (\Exception $exception) { |
|
| 82 | + } |
|
| 83 | + catch (\Exception $exception) |
|
| 84 | + { |
|
| 77 | 85 | $this->renderException($grid, $header, $exception); |
| 78 | 86 | |
| 79 | - if ($database->getName() != end($databases)) { |
|
| 87 | + if ($database->getName() != end($databases)) |
|
| 88 | + { |
|
| 80 | 89 | $grid->addRow(new TableSeparator()); |
| 81 | 90 | } |
| 82 | 91 | |
@@ -85,7 +94,8 @@ discard block |
||
| 85 | 94 | |
| 86 | 95 | $header[] = '<info>connected</info>'; |
| 87 | 96 | $this->renderTables($grid, $header, $database); |
| 88 | - if ($database->getName() != end($databases)) { |
|
| 97 | + if ($database->getName() != end($databases)) |
|
| 98 | + { |
|
| 89 | 99 | $grid->addRow(new TableSeparator()); |
| 90 | 100 | } |
| 91 | 101 | } |
@@ -119,7 +129,8 @@ discard block |
||
| 119 | 129 | */ |
| 120 | 130 | private function renderTables(Table $grid, array $header, Database $database): void |
| 121 | 131 | { |
| 122 | - foreach ($database->getTables() as $table) { |
|
| 132 | + foreach ($database->getTables() as $table) |
|
| 133 | + { |
|
| 123 | 134 | $grid->addRow( |
| 124 | 135 | array_merge( |
| 125 | 136 | $header, |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | */ |
| 73 | 73 | public function stream_open($path, $mode, $options, &$opened_path) |
| 74 | 74 | { |
| 75 | - if (!isset(self::$uris[$path])) { |
|
| 75 | + if (!isset(self::$uris[$path])){ |
|
| 76 | 76 | return false; |
| 77 | 77 | } |
| 78 | 78 | |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | */ |
| 157 | 157 | public function url_stat($path, $flags) |
| 158 | 158 | { |
| 159 | - if (!isset(self::$uris[$path])) { |
|
| 159 | + if (!isset(self::$uris[$path])){ |
|
| 160 | 160 | return null; |
| 161 | 161 | } |
| 162 | 162 | |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | */ |
| 169 | 169 | public static function register() |
| 170 | 170 | { |
| 171 | - if (self::$registered) { |
|
| 171 | + if (self::$registered){ |
|
| 172 | 172 | return; |
| 173 | 173 | } |
| 174 | 174 | |
@@ -184,8 +184,8 @@ discard block |
||
| 184 | 184 | */ |
| 185 | 185 | public static function has($file) |
| 186 | 186 | { |
| 187 | - if ($file instanceof StreamInterface) { |
|
| 188 | - $file = 'spiral://' . spl_object_hash($file); |
|
| 187 | + if ($file instanceof StreamInterface){ |
|
| 188 | + $file = 'spiral://'.spl_object_hash($file); |
|
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | return isset(self::$uris[$file]); |
@@ -202,15 +202,15 @@ discard block |
||
| 202 | 202 | public static function getResource(StreamInterface $stream) |
| 203 | 203 | { |
| 204 | 204 | $mode = null; |
| 205 | - if ($stream->isReadable()) { |
|
| 205 | + if ($stream->isReadable()){ |
|
| 206 | 206 | $mode = 'r'; |
| 207 | 207 | } |
| 208 | 208 | |
| 209 | - if ($stream->isWritable()) { |
|
| 209 | + if ($stream->isWritable()){ |
|
| 210 | 210 | $mode = !empty($mode) ? 'r+' : 'w'; |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - if (empty($mode)) { |
|
| 213 | + if (empty($mode)){ |
|
| 214 | 214 | throw new WrapperException('Stream is not available in read or write modes'); |
| 215 | 215 | } |
| 216 | 216 | |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | { |
| 228 | 228 | self::register(); |
| 229 | 229 | |
| 230 | - $uri = 'spiral://' . spl_object_hash($stream); |
|
| 230 | + $uri = 'spiral://'.spl_object_hash($stream); |
|
| 231 | 231 | self::$uris[$uri] = $stream; |
| 232 | 232 | |
| 233 | 233 | return $uri; |
@@ -241,8 +241,8 @@ discard block |
||
| 241 | 241 | */ |
| 242 | 242 | public static function release($file) |
| 243 | 243 | { |
| 244 | - if ($file instanceof StreamInterface) { |
|
| 245 | - $file = 'spiral://' . spl_object_hash($file); |
|
| 244 | + if ($file instanceof StreamInterface){ |
|
| 245 | + $file = 'spiral://'.spl_object_hash($file); |
|
| 246 | 246 | } |
| 247 | 247 | |
| 248 | 248 | unset(self::$uris[$file]); |
@@ -257,12 +257,12 @@ discard block |
||
| 257 | 257 | private function getStreamStats(StreamInterface $stream) |
| 258 | 258 | { |
| 259 | 259 | $mode = $this->mode; |
| 260 | - if (empty($mode)) { |
|
| 261 | - if ($stream->isReadable()) { |
|
| 260 | + if (empty($mode)){ |
|
| 261 | + if ($stream->isReadable()){ |
|
| 262 | 262 | $mode = 'r'; |
| 263 | 263 | } |
| 264 | 264 | |
| 265 | - if ($stream->isWritable()) { |
|
| 265 | + if ($stream->isWritable()){ |
|
| 266 | 266 | $mode = !empty($mode) ? 'r+' : 'w'; |
| 267 | 267 | } |
| 268 | 268 | } |
@@ -72,7 +72,8 @@ discard block |
||
| 72 | 72 | */ |
| 73 | 73 | public function stream_open($path, $mode, $options, &$opened_path) |
| 74 | 74 | { |
| 75 | - if (!isset(self::$uris[$path])) { |
|
| 75 | + if (!isset(self::$uris[$path])) |
|
| 76 | + { |
|
| 76 | 77 | return false; |
| 77 | 78 | } |
| 78 | 79 | |
@@ -156,7 +157,8 @@ discard block |
||
| 156 | 157 | */ |
| 157 | 158 | public function url_stat($path, $flags) |
| 158 | 159 | { |
| 159 | - if (!isset(self::$uris[$path])) { |
|
| 160 | + if (!isset(self::$uris[$path])) |
|
| 161 | + { |
|
| 160 | 162 | return null; |
| 161 | 163 | } |
| 162 | 164 | |
@@ -168,7 +170,8 @@ discard block |
||
| 168 | 170 | */ |
| 169 | 171 | public static function register() |
| 170 | 172 | { |
| 171 | - if (self::$registered) { |
|
| 173 | + if (self::$registered) |
|
| 174 | + { |
|
| 172 | 175 | return; |
| 173 | 176 | } |
| 174 | 177 | |
@@ -184,7 +187,8 @@ discard block |
||
| 184 | 187 | */ |
| 185 | 188 | public static function has($file) |
| 186 | 189 | { |
| 187 | - if ($file instanceof StreamInterface) { |
|
| 190 | + if ($file instanceof StreamInterface) |
|
| 191 | + { |
|
| 188 | 192 | $file = 'spiral://' . spl_object_hash($file); |
| 189 | 193 | } |
| 190 | 194 | |
@@ -202,15 +206,18 @@ discard block |
||
| 202 | 206 | public static function getResource(StreamInterface $stream) |
| 203 | 207 | { |
| 204 | 208 | $mode = null; |
| 205 | - if ($stream->isReadable()) { |
|
| 209 | + if ($stream->isReadable()) |
|
| 210 | + { |
|
| 206 | 211 | $mode = 'r'; |
| 207 | 212 | } |
| 208 | 213 | |
| 209 | - if ($stream->isWritable()) { |
|
| 214 | + if ($stream->isWritable()) |
|
| 215 | + { |
|
| 210 | 216 | $mode = !empty($mode) ? 'r+' : 'w'; |
| 211 | 217 | } |
| 212 | 218 | |
| 213 | - if (empty($mode)) { |
|
| 219 | + if (empty($mode)) |
|
| 220 | + { |
|
| 214 | 221 | throw new WrapperException('Stream is not available in read or write modes'); |
| 215 | 222 | } |
| 216 | 223 | |
@@ -241,7 +248,8 @@ discard block |
||
| 241 | 248 | */ |
| 242 | 249 | public static function release($file) |
| 243 | 250 | { |
| 244 | - if ($file instanceof StreamInterface) { |
|
| 251 | + if ($file instanceof StreamInterface) |
|
| 252 | + { |
|
| 245 | 253 | $file = 'spiral://' . spl_object_hash($file); |
| 246 | 254 | } |
| 247 | 255 | |
@@ -257,12 +265,15 @@ discard block |
||
| 257 | 265 | private function getStreamStats(StreamInterface $stream) |
| 258 | 266 | { |
| 259 | 267 | $mode = $this->mode; |
| 260 | - if (empty($mode)) { |
|
| 261 | - if ($stream->isReadable()) { |
|
| 268 | + if (empty($mode)) |
|
| 269 | + { |
|
| 270 | + if ($stream->isReadable()) |
|
| 271 | + { |
|
| 262 | 272 | $mode = 'r'; |
| 263 | 273 | } |
| 264 | 274 | |
| 265 | - if ($stream->isWritable()) { |
|
| 275 | + if ($stream->isWritable()) |
|
| 276 | + { |
|
| 266 | 277 | $mode = !empty($mode) ? 'r+' : 'w'; |
| 267 | 278 | } |
| 268 | 279 | } |
@@ -39,24 +39,24 @@ |
||
| 39 | 39 | */ |
| 40 | 40 | private function renderTrace(array $trace, int $verbosity): \Generator |
| 41 | 41 | { |
| 42 | - foreach ($trace as $item) { |
|
| 42 | + foreach ($trace as $item){ |
|
| 43 | 43 | $result = []; |
| 44 | 44 | |
| 45 | - if (isset($item['class'])) { |
|
| 45 | + if (isset($item['class'])){ |
|
| 46 | 46 | $result['function'] = sprintf( |
| 47 | 47 | '%s%s%s()', |
| 48 | 48 | $item['class'], |
| 49 | 49 | $item['type'], |
| 50 | 50 | $item['function'] |
| 51 | 51 | ); |
| 52 | - } else { |
|
| 52 | + }else{ |
|
| 53 | 53 | $result['function'] = sprintf( |
| 54 | 54 | '%s()', |
| 55 | 55 | $item['function'] |
| 56 | 56 | ); |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - if ($verbosity >= self::VERBOSITY_VERBOSE && isset($item['file'])) { |
|
| 59 | + if ($verbosity >= self::VERBOSITY_VERBOSE && isset($item['file'])){ |
|
| 60 | 60 | $result['at'] = [ |
| 61 | 61 | 'file' => $item['file'] ?? null, |
| 62 | 62 | 'line' => $item['line'] ?? null, |
@@ -39,24 +39,29 @@ |
||
| 39 | 39 | */ |
| 40 | 40 | private function renderTrace(array $trace, int $verbosity): \Generator |
| 41 | 41 | { |
| 42 | - foreach ($trace as $item) { |
|
| 42 | + foreach ($trace as $item) |
|
| 43 | + { |
|
| 43 | 44 | $result = []; |
| 44 | 45 | |
| 45 | - if (isset($item['class'])) { |
|
| 46 | + if (isset($item['class'])) |
|
| 47 | + { |
|
| 46 | 48 | $result['function'] = sprintf( |
| 47 | 49 | '%s%s%s()', |
| 48 | 50 | $item['class'], |
| 49 | 51 | $item['type'], |
| 50 | 52 | $item['function'] |
| 51 | 53 | ); |
| 52 | - } else { |
|
| 54 | + } |
|
| 55 | + else |
|
| 56 | + { |
|
| 53 | 57 | $result['function'] = sprintf( |
| 54 | 58 | '%s()', |
| 55 | 59 | $item['function'] |
| 56 | 60 | ); |
| 57 | 61 | } |
| 58 | 62 | |
| 59 | - if ($verbosity >= self::VERBOSITY_VERBOSE && isset($item['file'])) { |
|
| 63 | + if ($verbosity >= self::VERBOSITY_VERBOSE && isset($item['file'])) |
|
| 64 | + { |
|
| 60 | 65 | $result['at'] = [ |
| 61 | 66 | 'file' => $item['file'] ?? null, |
| 62 | 67 | 'line' => $item['line'] ?? null, |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | protected function getStacktrace(\Throwable $e): array |
| 34 | 34 | { |
| 35 | 35 | $stacktrace = $e->getTrace(); |
| 36 | - if (empty($stacktrace)) { |
|
| 36 | + if (empty($stacktrace)){ |
|
| 37 | 37 | return []; |
| 38 | 38 | } |
| 39 | 39 | |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | 'line' => $e->getLine(), |
| 44 | 44 | ] + $stacktrace[0]; |
| 45 | 45 | |
| 46 | - if ($stacktrace[0] != $header) { |
|
| 46 | + if ($stacktrace[0] != $header){ |
|
| 47 | 47 | array_unshift($stacktrace, $header); |
| 48 | 48 | } |
| 49 | 49 | |
@@ -33,7 +33,8 @@ discard block |
||
| 33 | 33 | protected function getStacktrace(\Throwable $e): array |
| 34 | 34 | { |
| 35 | 35 | $stacktrace = $e->getTrace(); |
| 36 | - if (empty($stacktrace)) { |
|
| 36 | + if (empty($stacktrace)) |
|
| 37 | + { |
|
| 37 | 38 | return []; |
| 38 | 39 | } |
| 39 | 40 | |
@@ -43,7 +44,8 @@ discard block |
||
| 43 | 44 | 'line' => $e->getLine(), |
| 44 | 45 | ] + $stacktrace[0]; |
| 45 | 46 | |
| 46 | - if ($stacktrace[0] != $header) { |
|
| 47 | + if ($stacktrace[0] != $header) |
|
| 48 | + { |
|
| 47 | 49 | array_unshift($stacktrace, $header); |
| 48 | 50 | } |
| 49 | 51 | |