Completed
Push — master ( 6366df...fbe022 )
by Kirill
23s queued 19s
created
src/Framework/Bootloader/Cycle/CycleBootloader.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     {
54 54
         $finalizer->addFinalizer(
55 55
             function () use ($container): void {
56
-                if ($container->hasInstance(ORMInterface::class)) {
56
+                if ($container->hasInstance(ORMInterface::class)){
57 57
                     $container->get(ORMInterface::class)->getHeap()->clean();
58 58
                 }
59 59
             }
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     ): ORMInterface {
76 76
         $orm = new ORM($factory, $schema);
77 77
 
78
-        if ($promiseFactory !== null) {
78
+        if ($promiseFactory !== null){
79 79
             return $orm->withPromiseFactory($promiseFactory);
80 80
         }
81 81
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,8 @@  discard block
 block discarded – undo
53 53
     {
54 54
         $finalizer->addFinalizer(
55 55
             function () use ($container): void {
56
-                if ($container->hasInstance(ORMInterface::class)) {
56
+                if ($container->hasInstance(ORMInterface::class))
57
+                {
57 58
                     $container->get(ORMInterface::class)->getHeap()->clean();
58 59
                 }
59 60
             }
@@ -75,7 +76,8 @@  discard block
 block discarded – undo
75 76
     ): ORMInterface {
76 77
         $orm = new ORM($factory, $schema);
77 78
 
78
-        if ($promiseFactory !== null) {
79
+        if ($promiseFactory !== null)
80
+        {
79 81
             return $orm->withPromiseFactory($promiseFactory);
80 82
         }
81 83
 
Please login to merge, or discard this patch.
src/Framework/Bootloader/Http/WebsocketsBootloader.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
             ]
57 57
         );
58 58
 
59
-        if ($env->get('RR_BROADCAST_PATH', null) !== null) {
59
+        if ($env->get('RR_BROADCAST_PATH', null) !== null){
60 60
             $http->addMiddleware(WebsocketsMiddleware::class);
61 61
         }
62 62
     }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,8 @@
 block discarded – undo
56 56
             ]
57 57
         );
58 58
 
59
-        if ($env->get('RR_BROADCAST_PATH', null) !== null) {
59
+        if ($env->get('RR_BROADCAST_PATH', null) !== null)
60
+        {
60 61
             $http->addMiddleware(WebsocketsMiddleware::class);
61 62
         }
62 63
     }
Please login to merge, or discard this patch.
src/Framework/Bootloader/Http/RouterBootloader.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     private function route(ServerRequestInterface $request): RouteInterface
58 58
     {
59 59
         $route = $request->getAttribute(Router::ROUTE_ATTRIBUTE, null);
60
-        if ($route === null) {
60
+        if ($route === null){
61 61
             throw new ScopeException('Unable to resolve Route, invalid request scope');
62 62
         }
63 63
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,8 @@
 block discarded – undo
57 57
     private function route(ServerRequestInterface $request): RouteInterface
58 58
     {
59 59
         $route = $request->getAttribute(Router::ROUTE_ATTRIBUTE, null);
60
-        if ($route === null) {
60
+        if ($route === null)
61
+        {
61 62
             throw new ScopeException('Unable to resolve Route, invalid request scope');
62 63
         }
63 64
 
Please login to merge, or discard this patch.
src/Framework/Bootloader/Http/CookiesBootloader.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     private function cookieQueue(ServerRequestInterface $request): CookieQueue
73 73
     {
74 74
         $cookieQueue = $request->getAttribute(CookieQueue::ATTRIBUTE, null);
75
-        if ($cookieQueue === null) {
75
+        if ($cookieQueue === null){
76 76
             throw new ScopeException('Unable to resolve CookieQueue, invalid request scope');
77 77
         }
78 78
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,8 @@
 block discarded – undo
72 72
     private function cookieQueue(ServerRequestInterface $request): CookieQueue
73 73
     {
74 74
         $cookieQueue = $request->getAttribute(CookieQueue::ATTRIBUTE, null);
75
-        if ($cookieQueue === null) {
75
+        if ($cookieQueue === null)
76
+        {
76 77
             throw new ScopeException('Unable to resolve CookieQueue, invalid request scope');
77 78
         }
78 79
 
Please login to merge, or discard this patch.
src/Framework/Bootloader/DomainBootloader.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     {
39 39
         $core = new InterceptableCore($core);
40 40
 
41
-        foreach (static::INTERCEPTORS as $interceptor) {
41
+        foreach (static::INTERCEPTORS as $interceptor){
42 42
             $core->addInterceptor($container->get($interceptor));
43 43
         }
44 44
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,8 @@
 block discarded – undo
38 38
     {
39 39
         $core = new InterceptableCore($core);
40 40
 
41
-        foreach (static::INTERCEPTORS as $interceptor) {
41
+        foreach (static::INTERCEPTORS as $interceptor)
42
+        {
42 43
             $core->addInterceptor($container->get($interceptor));
43 44
         }
44 45
 
Please login to merge, or discard this patch.
src/Framework/Bootloader/I18nBootloader.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@
 block discarded – undo
60 60
      */
61 61
     public function boot(EnvironmentInterface $env, DirectoriesInterface $dirs): void
62 62
     {
63
-        if (!$dirs->has('locale')) {
64
-            $dirs->set('locale', $dirs->get('app') . 'locale/');
63
+        if (!$dirs->has('locale')){
64
+            $dirs->set('locale', $dirs->get('app').'locale/');
65 65
         }
66 66
 
67 67
         $this->config->setDefaults(
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,8 @@
 block discarded – undo
58 58
      */
59 59
     public function boot(EnvironmentInterface $env, DirectoriesInterface $dirs): void
60 60
     {
61
-        if (!$dirs->has('locale')) {
61
+        if (!$dirs->has('locale'))
62
+        {
62 63
             $dirs->set('locale', $dirs->get('app') . 'locale/');
63 64
         }
64 65
 
Please login to merge, or discard this patch.
src/Framework/Bootloader/Views/ViewsBootloader.php 2 patches
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,8 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function boot(EnvironmentInterface $env, DirectoriesInterface $dirs): void
44 44
     {
45
-        if (!$dirs->has('views')) {
45
+        if (!$dirs->has('views'))
46
+        {
46 47
             $dirs->set('views', $dirs->get('app') . 'views');
47 48
         }
48 49
 
@@ -66,7 +67,8 @@  discard block
 block discarded – undo
66 67
      */
67 68
     public function addDirectory(string $namespace, string $directory): void
68 69
     {
69
-        if (!isset($this->config->getConfig('views')['namespaces'][$namespace])) {
70
+        if (!isset($this->config->getConfig('views')['namespaces'][$namespace]))
71
+        {
70 72
             $this->config->modify('views', new Append('namespaces', $namespace, []));
71 73
         }
72 74
 
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public function boot(EnvironmentInterface $env, DirectoriesInterface $dirs): void
46 46
     {
47
-        if (!$dirs->has('views')) {
48
-            $dirs->set('views', $dirs->get('app') . 'views');
47
+        if (!$dirs->has('views')){
48
+            $dirs->set('views', $dirs->get('app').'views');
49 49
         }
50 50
 
51 51
         // default view config
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             [
55 55
                 'cache'        => [
56 56
                     'enabled'   => $env->get('VIEW_CACHE', !$env->get('DEBUG', false)),
57
-                    'directory' => $dirs->get('cache') . 'views',
57
+                    'directory' => $dirs->get('cache').'views',
58 58
                 ],
59 59
                 'namespaces'   => [
60 60
                     'default' => [$dirs->get('views')],
@@ -71,11 +71,11 @@  discard block
 block discarded – undo
71 71
      */
72 72
     public function addDirectory(string $namespace, string $directory): void
73 73
     {
74
-        if (!isset($this->config->getConfig('views')['namespaces'][$namespace])) {
74
+        if (!isset($this->config->getConfig('views')['namespaces'][$namespace])){
75 75
             $this->config->modify('views', new Append('namespaces', $namespace, []));
76 76
         }
77 77
 
78
-        $this->config->modify('views', new Append('namespaces.' . $namespace, null, $directory));
78
+        $this->config->modify('views', new Append('namespaces.'.$namespace, null, $directory));
79 79
     }
80 80
 
81 81
     /**
Please login to merge, or discard this patch.
src/Framework/Bootloader/DebugBootloader.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,16 +70,16 @@
 block discarded – undo
70 70
     {
71 71
         $state = new State();
72 72
 
73
-        foreach ($this->collectors as $collector) {
74
-            if (is_string($collector)) {
73
+        foreach ($this->collectors as $collector){
74
+            if (is_string($collector)){
75 75
                 $collector = $this->factory->make($collector);
76 76
             }
77 77
 
78
-            if ($collector instanceof Autowire) {
78
+            if ($collector instanceof Autowire){
79 79
                 $collector = $collector->resolve($this->factory);
80 80
             }
81 81
 
82
-            if (!$collector instanceof StateCollectorInterface) {
82
+            if (!$collector instanceof StateCollectorInterface){
83 83
                 throw new StateException(
84 84
                     sprintf(
85 85
                         'Unable to populate state, invalid state collector %s',
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,16 +70,20 @@
 block discarded – undo
70 70
     {
71 71
         $state = new State();
72 72
 
73
-        foreach ($this->collectors as $collector) {
74
-            if (is_string($collector)) {
73
+        foreach ($this->collectors as $collector)
74
+        {
75
+            if (is_string($collector))
76
+            {
75 77
                 $collector = $this->factory->make($collector);
76 78
             }
77 79
 
78
-            if ($collector instanceof Autowire) {
80
+            if ($collector instanceof Autowire)
81
+            {
79 82
                 $collector = $collector->resolve($this->factory);
80 83
             }
81 84
 
82
-            if (!$collector instanceof StateCollectorInterface) {
85
+            if (!$collector instanceof StateCollectorInterface)
86
+            {
83 87
                 throw new StateException(
84 88
                     sprintf(
85 89
                         'Unable to populate state, invalid state collector %s',
Please login to merge, or discard this patch.
src/Framework/Bootloader/SnapshotsBootloader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@
 block discarded – undo
46 46
         DirectoriesInterface $dirs,
47 47
         FilesInterface $files,
48 48
         LoggerInterface $logger = null
49
-    ) {
49
+    ){
50 50
         return new FileSnapshooter(
51
-            $dirs->get('runtime') . '/snapshots/',
51
+            $dirs->get('runtime').'/snapshots/',
52 52
             $env->get('SNAPSHOT_MAX_FILES', self::MAX_SNAPSHOTS),
53 53
             $env->get('SNAPSHOT_VERBOSITY', HandlerInterface::VERBOSITY_VERBOSE),
54 54
             new PlainHandler(),
Please login to merge, or discard this patch.