Passed
Push — develop ( b2a03f...b2a56a )
by Портнов
04:59 queued 11s
created
src/Common/Providers/ManagedCacheProvider.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         }
48 48
         $di->setShared(
49 49
             self::SERVICE_NAME,
50
-            function () use ($prefix) {
50
+            function() use ($prefix) {
51 51
                 $serializerFactory = new SerializerFactory();
52 52
                 $adapterFactory    = new AdapterFactory($serializerFactory);
53 53
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,8 @@
 block discarded – undo
47 47
         }
48 48
         $di->setShared(
49 49
             self::SERVICE_NAME,
50
-            function () use ($prefix) {
50
+            function () use ($prefix)
51
+            {
51 52
                 $serializerFactory = new SerializerFactory();
52 53
                 $adapterFactory    = new AdapterFactory($serializerFactory);
53 54
 
Please login to merge, or discard this patch.
src/Common/Providers/ModelsCacheProvider.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         }
47 47
         $di->setShared(
48 48
             self::SERVICE_NAME,
49
-            function () use ($prefix){
49
+            function() use ($prefix){
50 50
                 $serializerFactory = new SerializerFactory();
51 51
                 $adapterFactory    = new AdapterFactory($serializerFactory);
52 52
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,8 @@
 block discarded – undo
46 46
         }
47 47
         $di->setShared(
48 48
             self::SERVICE_NAME,
49
-            function () use ($prefix){
49
+            function () use ($prefix)
50
+            {
50 51
                 $serializerFactory = new SerializerFactory();
51 52
                 $adapterFactory    = new AdapterFactory($serializerFactory);
52 53
 
Please login to merge, or discard this patch.
src/Common/Providers/BeanstalkConnectionCacheProvider.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     {
33 33
         $di->setShared(
34 34
             self::SERVICE_NAME,
35
-            function () {
35
+            function() {
36 36
                 return new BeanstalkClient(CacheCleanerPlugin::class);
37 37
             }
38 38
         );
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,8 @@
 block discarded – undo
32 32
     {
33 33
         $di->setShared(
34 34
             self::SERVICE_NAME,
35
-            function () {
35
+            function ()
36
+            {
36 37
                 return new BeanstalkClient(CacheCleanerPlugin::class);
37 38
             }
38 39
         );
Please login to merge, or discard this patch.
src/Common/Providers/BeanstalkConnectionModelsProvider.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     {
33 33
         $di->setShared(
34 34
             self::SERVICE_NAME,
35
-            function () {
35
+            function() {
36 36
                 return new BeanstalkClient(WorkerModelsEvents::class);
37 37
             }
38 38
         );
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,8 @@
 block discarded – undo
32 32
     {
33 33
         $di->setShared(
34 34
             self::SERVICE_NAME,
35
-            function () {
35
+            function ()
36
+            {
36 37
                 return new BeanstalkClient(WorkerModelsEvents::class);
37 38
             }
38 39
         );
Please login to merge, or discard this patch.
src/Core/System/Configs/BeanstalkConf.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         while (true) {
36 36
             $pid = Util::getPidOfProcess('beanstalkd');
37 37
             if (empty($pid)) {
38
-                Util::echoWithSyslog(' - Wait for start beanstalkd deamon ...' . PHP_EOL);
38
+                Util::echoWithSyslog(' - Wait for start beanstalkd deamon ...'.PHP_EOL);
39 39
                 sleep(2);
40 40
             } else {
41 41
                 break;
Please login to merge, or discard this patch.