Passed
Branch master (16d9c9)
by Anton
04:39
created
src/Bootloader/ConsoleBootloader.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
         string $header,
94 94
         string $footer = '',
95 95
         array $options = []
96
-    ) {
96
+    ){
97 97
         $this->config->modify(
98 98
             'console',
99 99
             $this->sequence('configure', $sequence, $header, $footer, $options)
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
         string $header,
112 112
         string $footer = '',
113 113
         array $options = []
114
-    ) {
114
+    ){
115 115
         $this->config->modify(
116 116
             'console',
117 117
             $this->sequence('update', $sequence, $header, $footer, $options)
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         string $footer,
134 134
         array $options
135 135
     ): Append {
136
-        if (is_array($sequence) || $sequence instanceof \Closure) {
136
+        if (is_array($sequence) || $sequence instanceof \Closure){
137 137
             return new Append(
138 138
                 $target,
139 139
                 null,
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,8 @@
 block discarded – undo
133 133
         string $footer,
134 134
         array $options
135 135
     ): Append {
136
-        if (is_array($sequence) || $sequence instanceof \Closure) {
136
+        if (is_array($sequence) || $sequence instanceof \Closure)
137
+        {
137 138
             return new Append(
138 139
                 $target,
139 140
                 null,
Please login to merge, or discard this patch.
src/Bootloader/Http/SessionBootloader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,13 +37,13 @@
 block discarded – undo
37 37
         ConfiguratorInterface $config,
38 38
         HttpBootloader $http,
39 39
         DirectoriesInterface $directories
40
-    ) {
40
+    ){
41 41
         $config->setDefaults('session', [
42 42
             'lifetime' => 86400,
43 43
             'cookie'   => 'sid',
44 44
             'secure'   => false,
45 45
             'handler'  => new Autowire(FileHandler::class, [
46
-                    'directory' => $directories->get('runtime') . 'session',
46
+                    'directory' => $directories->get('runtime').'session',
47 47
                     'lifetime'  => 86400
48 48
                 ]
49 49
             )
Please login to merge, or discard this patch.
src/Bootloader/Http/HttpBootloader.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     {
70 70
         $kernel->addDispatcher($factory->make(SapiDispatcher::class));
71 71
 
72
-        if (class_exists(PSR7Client::class)) {
72
+        if (class_exists(PSR7Client::class)){
73 73
             $kernel->addDispatcher($factory->make(RrDispacher::class));
74 74
         }
75 75
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,8 @@
 block discarded – undo
69 69
     {
70 70
         $kernel->addDispatcher($factory->make(SapiDispatcher::class));
71 71
 
72
-        if (class_exists(PSR7Client::class)) {
72
+        if (class_exists(PSR7Client::class))
73
+        {
73 74
             $kernel->addDispatcher($factory->make(RrDispacher::class));
74 75
         }
75 76
 
Please login to merge, or discard this patch.
src/Security/ScopeGuard.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         PermissionsInterface $permissions,
41 41
         ContainerInterface $actorScope,
42 42
         array $roles = []
43
-    ) {
43
+    ){
44 44
         $this->roles = $roles;
45 45
         $this->container = $actorScope;
46 46
         $this->permissions = $permissions;
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
     public function allows(string $permission, array $context = []): bool
53 53
     {
54 54
         $allows = false;
55
-        foreach ($this->getRoles() as $role) {
56
-            if (!$this->permissions->hasRole($role)) {
55
+        foreach ($this->getRoles() as $role){
56
+            if (!$this->permissions->hasRole($role)){
57 57
                 continue;
58 58
             }
59 59
 
@@ -99,13 +99,13 @@  discard block
 block discarded – undo
99 99
      */
100 100
     public function getActor(): ActorInterface
101 101
     {
102
-        if (!is_null($this->actor)) {
102
+        if (!is_null($this->actor)){
103 103
             return $this->actor;
104 104
         }
105 105
 
106
-        try {
106
+        try{
107 107
             return $this->container->get(ActorInterface::class);
108
-        } catch (ContainerException $e) {
108
+        }catch (ContainerException $e){
109 109
             throw new ScopeException("Unable to resolve Actor from the scope", $e->getCode(), $e);
110 110
         }
111 111
     }
Please login to merge, or discard this patch.
Braces   +11 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,8 +52,10 @@  discard block
 block discarded – undo
52 52
     public function allows(string $permission, array $context = []): bool
53 53
     {
54 54
         $allows = false;
55
-        foreach ($this->getRoles() as $role) {
56
-            if (!$this->permissions->hasRole($role)) {
55
+        foreach ($this->getRoles() as $role)
56
+        {
57
+            if (!$this->permissions->hasRole($role))
58
+            {
57 59
                 continue;
58 60
             }
59 61
 
@@ -99,13 +101,17 @@  discard block
 block discarded – undo
99 101
      */
100 102
     public function getActor(): ActorInterface
101 103
     {
102
-        if (!is_null($this->actor)) {
104
+        if (!is_null($this->actor))
105
+        {
103 106
             return $this->actor;
104 107
         }
105 108
 
106
-        try {
109
+        try
110
+        {
107 111
             return $this->container->get(ActorInterface::class);
108
-        } catch (ContainerException $e) {
112
+        }
113
+        catch (ContainerException $e)
114
+        {
109 115
             throw new ScopeException("Unable to resolve Actor from the scope", $e->getCode(), $e);
110 116
         }
111 117
     }
Please login to merge, or discard this patch.
src/Framework/Kernel.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -39,28 +39,28 @@
 block discarded – undo
39 39
      */
40 40
     protected function mapDirectories(array $directories): array
41 41
     {
42
-        if (!isset($directories['root'])) {
42
+        if (!isset($directories['root'])){
43 43
             throw new BootException("Missing required directory `root`.");
44 44
         }
45 45
 
46
-        if (!isset($directories['app'])) {
47
-            $directories['app'] = $directories['root'] . '/app/';
46
+        if (!isset($directories['app'])){
47
+            $directories['app'] = $directories['root'].'/app/';
48 48
         }
49 49
 
50 50
         return array_merge([
51 51
             // public root
52
-            'public'    => $directories['root'] . '/public/',
52
+            'public'    => $directories['root'].'/public/',
53 53
 
54 54
             // vendor libraries
55
-            'vendor'    => $directories['root'] . '/vendor/',
55
+            'vendor'    => $directories['root'].'/vendor/',
56 56
 
57 57
             // data directories
58
-            'runtime'   => $directories['root'] . '/runtime/',
59
-            'cache'     => $directories['root'] . '/runtime/cache/',
58
+            'runtime'   => $directories['root'].'/runtime/',
59
+            'cache'     => $directories['root'].'/runtime/cache/',
60 60
 
61 61
             // application directories
62
-            'config'    => $directories['app'] . '/config/',
63
-            'resources' => $directories['app'] . '/resources/',
62
+            'config'    => $directories['app'].'/config/',
63
+            'resources' => $directories['app'].'/resources/',
64 64
         ], $directories);
65 65
     }
66 66
 }
67 67
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,11 +39,13 @@
 block discarded – undo
39 39
      */
40 40
     protected function mapDirectories(array $directories): array
41 41
     {
42
-        if (!isset($directories['root'])) {
42
+        if (!isset($directories['root']))
43
+        {
43 44
             throw new BootException("Missing required directory `root`.");
44 45
         }
45 46
 
46
-        if (!isset($directories['app'])) {
47
+        if (!isset($directories['app']))
48
+        {
47 49
             $directories['app'] = $directories['root'] . '/app/';
48 50
         }
49 51
 
Please login to merge, or discard this patch.
src/Cycle/SelectInjector.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function createInjection(\ReflectionClass $class, string $context = null)
36 36
     {
37
-        if (!$this->orm->getSchema()->defines($context)) {
37
+        if (!$this->orm->getSchema()->defines($context)){
38 38
             throw new ORMException("Cycle schema is not initiated or role missing, run `cycle`.");
39 39
         }
40 40
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,8 @@
 block discarded – undo
34 34
      */
35 35
     public function createInjection(\ReflectionClass $class, string $context = null)
36 36
     {
37
-        if (!$this->orm->getSchema()->defines($context)) {
37
+        if (!$this->orm->getSchema()->defines($context))
38
+        {
38 39
             throw new ORMException("Cycle schema is not initiated or role missing, run `cycle`.");
39 40
         }
40 41
 
Please login to merge, or discard this patch.
src/Snapshots/FileSnapshotter.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         int $verbosity,
49 49
         HandlerInterface $handler,
50 50
         FilesInterface $files
51
-    ) {
51
+    ){
52 52
         $this->directory = $directory;
53 53
         $this->maxFiles = $maxFiles;
54 54
         $this->verbosity = $verbosity;
@@ -92,17 +92,17 @@  discard block
 block discarded – undo
92 92
     protected function rotateSnapshots()
93 93
     {
94 94
         $finder = new Finder();
95
-        $finder->in($this->directory)->sort(function (SplFileInfo $a, SplFileInfo $b) {
95
+        $finder->in($this->directory)->sort(function (SplFileInfo $a, SplFileInfo $b){
96 96
             return $b->getMTime() - $a->getMTime();
97 97
         });
98 98
 
99 99
         $count = 0;
100
-        foreach ($finder as $file) {
100
+        foreach ($finder as $file){
101 101
             $count++;
102
-            if ($count > $this->maxFiles) {
103
-                try {
102
+            if ($count > $this->maxFiles){
103
+                try{
104 104
                     $this->files->delete($file->getRealPath());
105
-                } catch (FilesException $e) {
105
+                }catch (FilesException $e){
106 106
                     // ignore
107 107
                 }
108 108
             }
Please login to merge, or discard this patch.
Braces   +11 added lines, -5 removed lines patch added patch discarded remove patch
@@ -92,17 +92,23 @@
 block discarded – undo
92 92
     protected function rotateSnapshots()
93 93
     {
94 94
         $finder = new Finder();
95
-        $finder->in($this->directory)->sort(function (SplFileInfo $a, SplFileInfo $b) {
95
+        $finder->in($this->directory)->sort(function (SplFileInfo $a, SplFileInfo $b)
96
+        {
96 97
             return $b->getMTime() - $a->getMTime();
97 98
         });
98 99
 
99 100
         $count = 0;
100
-        foreach ($finder as $file) {
101
+        foreach ($finder as $file)
102
+        {
101 103
             $count++;
102
-            if ($count > $this->maxFiles) {
103
-                try {
104
+            if ($count > $this->maxFiles)
105
+            {
106
+                try
107
+                {
104 108
                     $this->files->delete($file->getRealPath());
105
-                } catch (FilesException $e) {
109
+                }
110
+                catch (FilesException $e)
111
+                {
106 112
                     // ignore
107 113
                 }
108 114
             }
Please login to merge, or discard this patch.
src/Controller/Traits/AuthorizesTrait.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     protected function authorize(string $permission, array $context = []): bool
32 32
     {
33
-        if (!$this->allows($permission, $context)) {
33
+        if (!$this->allows($permission, $context)){
34 34
             $name = $this->resolvePermission($permission);
35 35
 
36 36
             throw new ControllerException(
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,8 @@
 block discarded – undo
30 30
      */
31 31
     protected function authorize(string $permission, array $context = []): bool
32 32
     {
33
-        if (!$this->allows($permission, $context)) {
33
+        if (!$this->allows($permission, $context))
34
+        {
34 35
             $name = $this->resolvePermission($permission);
35 36
 
36 37
             throw new ControllerException(
Please login to merge, or discard this patch.
src/Filter/RequestInput.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     public function getValue(string $source, string $name = null)
43 43
     {
44
-        if (!method_exists($this->input, $source)) {
44
+        if (!method_exists($this->input, $source)){
45 45
             throw new InputException("Undefined input source '{$source}'");
46 46
         }
47 47
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,8 @@
 block discarded – undo
41 41
      */
42 42
     public function getValue(string $source, string $name = null)
43 43
     {
44
-        if (!method_exists($this->input, $source)) {
44
+        if (!method_exists($this->input, $source))
45
+        {
45 46
             throw new InputException("Undefined input source '{$source}'");
46 47
         }
47 48
 
Please login to merge, or discard this patch.