Passed
Push — master ( 9f2c4f...e942df )
by Aleksei
17:57 queued 05:15
created
src/Views/src/Config/ViewsConfig.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,8 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Views/src/ViewContext.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Views/src/Engine/AbstractEngine.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,8 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Views/src/Engine/Native/NativeEngine.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Views/src/Engine/Native/NativeView.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
Braces   +12 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,21 +23,28 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Views/src/ViewSource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/Views/src/Event/ViewNotFound.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,6 +8,6 @@
 block discarded – undo
8 8
 {
9 9
     public function __construct(
10 10
         public readonly string $path,
11
-    ) {
11
+    ){
12 12
     }
13 13
 }
Please login to merge, or discard this patch.
src/Views/src/GlobalVariables.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Views/src/Bootloader/ViewsBootloader.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -34,13 +34,13 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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,
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.