@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | public function getGlobalVariables(): array |
29 | 29 | { |
30 | - return (array) ($this->config['globalVariables'] ?? []); |
|
30 | + return (array)($this->config['globalVariables'] ?? []); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | public function isCacheEnabled(): bool |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | |
38 | 38 | public function getCacheDirectory(): string |
39 | 39 | { |
40 | - return \rtrim($this->config['cache']['directory'] ?? '', '/') . '/'; |
|
40 | + return \rtrim($this->config['cache']['directory'] ?? '', '/').'/'; |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public function getNamespaces(): array |
47 | 47 | { |
48 | - return (array) ($this->config['namespaces'] ?? []); |
|
48 | + return (array)($this->config['namespaces'] ?? []); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | /** |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | { |
58 | 58 | return \array_map( |
59 | 59 | fn (mixed $dependency): Autowire => $this->wire($dependency), |
60 | - (array) ($this->config['dependencies'] ?? []) |
|
60 | + (array)($this->config['dependencies'] ?? []) |
|
61 | 61 | ); |
62 | 62 | } |
63 | 63 | |
@@ -70,16 +70,16 @@ discard block |
||
70 | 70 | { |
71 | 71 | return \array_map( |
72 | 72 | fn (mixed $engine): Autowire => $this->wire($engine), |
73 | - (array) ($this->config['engines'] ?? []) |
|
73 | + (array)($this->config['engines'] ?? []) |
|
74 | 74 | ); |
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
78 | 78 | * @param Autowire|class-string $item |
79 | 79 | */ |
80 | - private function wire(Autowire|string $item): Autowire |
|
80 | + private function wire(Autowire | string $item): Autowire |
|
81 | 81 | { |
82 | - if ($item instanceof Autowire) { |
|
82 | + if ($item instanceof Autowire){ |
|
83 | 83 | return $item; |
84 | 84 | } |
85 | 85 |
@@ -79,7 +79,8 @@ |
||
79 | 79 | */ |
80 | 80 | private function wire(Autowire|string $item): Autowire |
81 | 81 | { |
82 | - if ($item instanceof Autowire) { |
|
82 | + if ($item instanceof Autowire) |
|
83 | + { |
|
83 | 84 | return $item; |
84 | 85 | } |
85 | 86 |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | public function getID(): string |
21 | 21 | { |
22 | 22 | $calculated = ''; |
23 | - foreach ($this->dependencies as $dependency) { |
|
23 | + foreach ($this->dependencies as $dependency){ |
|
24 | 24 | $calculated .= \sprintf('[%s=%s]', $dependency->getName(), $dependency->getValue()); |
25 | 25 | } |
26 | 26 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | public function resolveValue(string $dependency): mixed |
49 | 49 | { |
50 | - if (!isset($this->dependencies[$dependency])) { |
|
50 | + if (!isset($this->dependencies[$dependency])){ |
|
51 | 51 | throw new ContextException(\sprintf('Undefined context dependency \'%s\'.', $dependency)); |
52 | 52 | } |
53 | 53 |
@@ -20,7 +20,8 @@ discard block |
||
20 | 20 | public function getID(): string |
21 | 21 | { |
22 | 22 | $calculated = ''; |
23 | - foreach ($this->dependencies as $dependency) { |
|
23 | + foreach ($this->dependencies as $dependency) |
|
24 | + { |
|
24 | 25 | $calculated .= \sprintf('[%s=%s]', $dependency->getName(), $dependency->getValue()); |
25 | 26 | } |
26 | 27 | |
@@ -47,7 +48,8 @@ discard block |
||
47 | 48 | |
48 | 49 | public function resolveValue(string $dependency): mixed |
49 | 50 | { |
50 | - if (!isset($this->dependencies[$dependency])) { |
|
51 | + if (!isset($this->dependencies[$dependency])) |
|
52 | + { |
|
51 | 53 | throw new ContextException(\sprintf('Undefined context dependency \'%s\'.', $dependency)); |
52 | 54 | } |
53 | 55 |
@@ -28,7 +28,7 @@ |
||
28 | 28 | |
29 | 29 | public function getLoader(): LoaderInterface |
30 | 30 | { |
31 | - if (empty($this->loader)) { |
|
31 | + if (empty($this->loader)){ |
|
32 | 32 | throw new EngineException('No associated loader found'); |
33 | 33 | } |
34 | 34 |
@@ -28,7 +28,8 @@ |
||
28 | 28 | |
29 | 29 | public function getLoader(): LoaderInterface |
30 | 30 | { |
31 | - if (empty($this->loader)) { |
|
31 | + if (empty($this->loader)) |
|
32 | + { |
|
32 | 33 | throw new EngineException('No associated loader found'); |
33 | 34 | } |
34 | 35 |
@@ -16,7 +16,7 @@ |
||
16 | 16 | public function __construct( |
17 | 17 | private readonly ContainerInterface $container, |
18 | 18 | string $extension = self::EXTENSION |
19 | - ) { |
|
19 | + ){ |
|
20 | 20 | $this->extension = $extension; |
21 | 21 | } |
22 | 22 |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | public function __construct( |
16 | 16 | private readonly ViewSource $view, |
17 | 17 | private readonly ContainerInterface $container |
18 | - ) { |
|
18 | + ){ |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | public function render(array $data = []): string |
@@ -23,21 +23,21 @@ discard block |
||
23 | 23 | \ob_start(); |
24 | 24 | $__outputLevel__ = \ob_get_level(); |
25 | 25 | |
26 | - try { |
|
26 | + try{ |
|
27 | 27 | ContainerScope::runScope($this->container, function () use ($data): void { |
28 | 28 | \extract($data, EXTR_OVERWRITE); |
29 | 29 | // render view in context and output buffer scope, context can be accessed using $this->context |
30 | 30 | require $this->view->getFilename(); |
31 | 31 | }); |
32 | - } catch (\Throwable $throwable) { |
|
33 | - while (\ob_get_level() >= $__outputLevel__) { |
|
32 | + }catch (\Throwable $throwable){ |
|
33 | + while (\ob_get_level() >= $__outputLevel__){ |
|
34 | 34 | \ob_end_clean(); |
35 | 35 | } |
36 | 36 | |
37 | 37 | throw new RenderException($throwable); |
38 | - } finally { |
|
38 | + }finally{ |
|
39 | 39 | //Closing all nested buffers |
40 | - while (\ob_get_level() > $__outputLevel__) { |
|
40 | + while (\ob_get_level() > $__outputLevel__){ |
|
41 | 41 | \ob_end_clean(); |
42 | 42 | } |
43 | 43 | } |
@@ -23,21 +23,28 @@ |
||
23 | 23 | \ob_start(); |
24 | 24 | $__outputLevel__ = \ob_get_level(); |
25 | 25 | |
26 | - try { |
|
26 | + try |
|
27 | + { |
|
27 | 28 | ContainerScope::runScope($this->container, function () use ($data): void { |
28 | 29 | \extract($data, EXTR_OVERWRITE); |
29 | 30 | // render view in context and output buffer scope, context can be accessed using $this->context |
30 | 31 | require $this->view->getFilename(); |
31 | 32 | }); |
32 | - } catch (\Throwable $throwable) { |
|
33 | - while (\ob_get_level() >= $__outputLevel__) { |
|
33 | + } |
|
34 | + catch (\Throwable $throwable) |
|
35 | + { |
|
36 | + while (\ob_get_level() >= $__outputLevel__) |
|
37 | + { |
|
34 | 38 | \ob_end_clean(); |
35 | 39 | } |
36 | 40 | |
37 | 41 | throw new RenderException($throwable); |
38 | - } finally { |
|
42 | + } |
|
43 | + finally |
|
44 | + { |
|
39 | 45 | //Closing all nested buffers |
40 | - while (\ob_get_level() > $__outputLevel__) { |
|
46 | + while (\ob_get_level() > $__outputLevel__) |
|
47 | + { |
|
41 | 48 | \ob_end_clean(); |
42 | 49 | } |
43 | 50 | } |
@@ -15,7 +15,7 @@ |
||
15 | 15 | private readonly string $filename, |
16 | 16 | private readonly string $namespace, |
17 | 17 | private readonly string $name |
18 | - ) { |
|
18 | + ){ |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -8,6 +8,6 @@ |
||
8 | 8 | { |
9 | 9 | public function __construct( |
10 | 10 | public readonly string $path, |
11 | - ) { |
|
11 | + ){ |
|
12 | 12 | } |
13 | 13 | } |
@@ -8,7 +8,7 @@ |
||
8 | 8 | { |
9 | 9 | public function __construct( |
10 | 10 | private array $variables = [] |
11 | - ) { |
|
11 | + ){ |
|
12 | 12 | } |
13 | 13 | |
14 | 14 | public function set(string $name, mixed $data): void |
@@ -34,13 +34,13 @@ discard block |
||
34 | 34 | |
35 | 35 | public function __construct( |
36 | 36 | private readonly ConfiguratorInterface $config |
37 | - ) { |
|
37 | + ){ |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | public function init(EnvironmentInterface $env, DirectoriesInterface $dirs, DebugMode $debugMode): void |
41 | 41 | { |
42 | - if (!$dirs->has('views')) { |
|
43 | - $dirs->set('views', $dirs->get('app') . 'views'); |
|
42 | + if (!$dirs->has('views')){ |
|
43 | + $dirs->set('views', $dirs->get('app').'views'); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | // default view config |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | [ |
50 | 50 | 'cache' => [ |
51 | 51 | 'enabled' => $env->get('VIEW_CACHE', !$debugMode->isEnabled()), |
52 | - 'directory' => $dirs->get('cache') . 'views', |
|
52 | + 'directory' => $dirs->get('cache').'views', |
|
53 | 53 | ], |
54 | 54 | 'namespaces' => [ |
55 | 55 | 'default' => [$dirs->get('views')], |
@@ -62,17 +62,17 @@ discard block |
||
62 | 62 | |
63 | 63 | public function addDirectory(string $namespace, string $directory): void |
64 | 64 | { |
65 | - if (!isset($this->config->getConfig(ViewsConfig::CONFIG)['namespaces'][$namespace])) { |
|
65 | + if (!isset($this->config->getConfig(ViewsConfig::CONFIG)['namespaces'][$namespace])){ |
|
66 | 66 | $this->config->modify(ViewsConfig::CONFIG, new Append('namespaces', $namespace, [])); |
67 | 67 | } |
68 | 68 | |
69 | 69 | $this->config->modify( |
70 | 70 | ViewsConfig::CONFIG, |
71 | - new Append('namespaces.' . $namespace, null, $directory) |
|
71 | + new Append('namespaces.'.$namespace, null, $directory) |
|
72 | 72 | ); |
73 | 73 | } |
74 | 74 | |
75 | - public function addEngine(string|EngineInterface $engine): void |
|
75 | + public function addEngine(string | EngineInterface $engine): void |
|
76 | 76 | { |
77 | 77 | $this->config->modify( |
78 | 78 | ViewsConfig::CONFIG, |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | ); |
81 | 81 | } |
82 | 82 | |
83 | - public function addCacheDependency(string|DependencyInterface $dependency): void |
|
83 | + public function addCacheDependency(string | DependencyInterface $dependency): void |
|
84 | 84 | { |
85 | 85 | $this->config->modify( |
86 | 86 | ViewsConfig::CONFIG, |
@@ -39,7 +39,8 @@ discard block |
||
39 | 39 | |
40 | 40 | public function init(EnvironmentInterface $env, DirectoriesInterface $dirs, DebugMode $debugMode): void |
41 | 41 | { |
42 | - if (!$dirs->has('views')) { |
|
42 | + if (!$dirs->has('views')) |
|
43 | + { |
|
43 | 44 | $dirs->set('views', $dirs->get('app') . 'views'); |
44 | 45 | } |
45 | 46 | |
@@ -62,7 +63,8 @@ discard block |
||
62 | 63 | |
63 | 64 | public function addDirectory(string $namespace, string $directory): void |
64 | 65 | { |
65 | - if (!isset($this->config->getConfig(ViewsConfig::CONFIG)['namespaces'][$namespace])) { |
|
66 | + if (!isset($this->config->getConfig(ViewsConfig::CONFIG)['namespaces'][$namespace])) |
|
67 | + { |
|
66 | 68 | $this->config->modify(ViewsConfig::CONFIG, new Append('namespaces', $namespace, [])); |
67 | 69 | } |
68 | 70 |