Passed
Push — develop ( a2fddf...dc6451 )
by Nikolay
04:41
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/BeanstalkConnectionModelsProvider.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,11 +40,11 @@
 block discarded – undo
40 40
     {
41 41
         $di->setShared(
42 42
             self::SERVICE_NAME,
43
-            function () {
43
+            function() {
44 44
                 while (true) {
45 45
                     $pid = Util::getPidOfProcess('beanstalkd');
46 46
                     if (empty($pid)) {
47
-                        Util::echoWithSyslog(' - Wait for start beanstalkd deamon ...' . PHP_EOL);
47
+                        Util::echoWithSyslog(' - Wait for start beanstalkd deamon ...'.PHP_EOL);
48 48
                         sleep(2);
49 49
                     } else {
50 50
                         $queue = new BeanstalkClient(WorkerModelsEvents::class);
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,8 @@
 block discarded – undo
40 40
     {
41 41
         $di->setShared(
42 42
             self::SERVICE_NAME,
43
-            function () {
43
+            function ()
44
+            {
44 45
                 while (true) {
45 46
                     $pid = Util::getPidOfProcess('beanstalkd');
46 47
                     if (empty($pid)) {
Please login to merge, or discard this patch.
src/Common/Providers/BeanstalkConnectionCacheProvider.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@
 block discarded – undo
34 34
     {
35 35
         $di->setShared(
36 36
             self::SERVICE_NAME,
37
-            function () {
37
+            function() {
38 38
                 while (true) {
39 39
                     $pid = Util::getPidOfProcess('beanstalkd');
40 40
                     if (empty($pid)) {
41
-                        Util::echoWithSyslog(' - Wait for start beanstalkd deamon ...' . PHP_EOL);
41
+                        Util::echoWithSyslog(' - Wait for start beanstalkd deamon ...'.PHP_EOL);
42 42
                         sleep(2);
43 43
                     } else {
44 44
                         $queue = new BeanstalkClient(CacheCleanerPlugin::class);
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,8 @@
 block discarded – undo
40 40
     {
41 41
         $di->setShared(
42 42
             self::SERVICE_NAME,
43
-            function () {
43
+            function ()
44
+            {
44 45
                 while (true) {
45 46
                     $pid = Util::getPidOfProcess('beanstalkd');
46 47
                     if (empty($pid)) {
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.