Completed
Push — master ( d5d6a4...e980fb )
by Julien
07:09 queued 04:30
created
src/Push/Debug/DataCollector/PushServerDataCollector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
             $this->data['messages_size'] += $messageSize;
56 56
             $this->data['messages_count']++;
57 57
 
58
-            $this->data['messages'] []= array(
58
+            $this->data['messages'] [] = array(
59 59
                 'content' => $message,
60 60
                 'size' => $messageSize,
61 61
                 'decoded' => unserialize($message),
Please login to merge, or discard this patch.
src/Push/Bridge/ZMQ/ServiceProvider.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
      */
16 16
     public function register(Container $app)
17 17
     {
18
-        $app['sandstone.push'] = function () use ($app) {
18
+        $app['sandstone.push'] = function() use ($app) {
19 19
             $pushServerHost = $app['sandstone.push.server']['host'];
20 20
             $pushServerPort = $app['sandstone.push.server']['port'];
21 21
 
Please login to merge, or discard this patch.
tests/Unit/EventForwarderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         $pushServerMock
24 24
             ->expects($this->once())
25 25
             ->method('send')
26
-            ->with($this->callback(function ($message) {
26
+            ->with($this->callback(function($message) {
27 27
                 $decodedMessage = unserialize($message);
28 28
                 $serializedEvent = '{"propagation_stopped":false,"id":42,"title":"title","url":"url"}';
29 29
 
Please login to merge, or discard this patch.
tests/Integration/PushTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 
15 15
         $app = new App\AppRestApi([
16 16
             'debug' => true,
17
-            'sandstone.push' => function () use ($pushServerMock) {
17
+            'sandstone.push' => function() use ($pushServerMock) {
18 18
                 return $pushServerMock;
19 19
             },
20 20
         ]);
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
         $pushServerMock
25 25
             ->expects($this->once())
26 26
             ->method('send')
27
-            ->with($this->callback(function ($message) {
27
+            ->with($this->callback(function($message) {
28 28
                 $decodedMessage = unserialize($message);
29 29
                 $serializedEvent = '{"propagation_stopped":false,"id":42,"title":"Unicorns spotted in Alaska","url":"http:\/\/unicorn.com\/articles\/unicorns-spotted-alaska"}';
30 30
 
Please login to merge, or discard this patch.
tests/Integration/App/AppRestApi.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     {
11 11
         parent::__construct($values);
12 12
 
13
-        $this->post('api/articles', function () {
13
+        $this->post('api/articles', function() {
14 14
             $id = 42;
15 15
             $title = 'Unicorns spotted in Alaska';
16 16
             $url = 'http://unicorn.com/articles/unicorns-spotted-alaska';
Please login to merge, or discard this patch.
src/Push/Debug/PushServerProfilerServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -14,16 +14,16 @@  discard block
 block discarded – undo
14 14
      */
15 15
     public function register(Container $app)
16 16
     {
17
-        $app->extend('data_collectors', function ($collectors) {
18
-            $collectors[PushServerDataCollector::NAME] = function ($app) {
17
+        $app->extend('data_collectors', function($collectors) {
18
+            $collectors[PushServerDataCollector::NAME] = function($app) {
19 19
                 return new PushServerDataCollector($app['sandstone.push']);
20 20
             };
21 21
 
22 22
             return $collectors;
23 23
         });
24 24
 
25
-        $app['data_collector.templates'] = $app->extend('data_collector.templates', function ($templates) {
26
-            $templates []= array(
25
+        $app['data_collector.templates'] = $app->extend('data_collector.templates', function($templates) {
26
+            $templates [] = array(
27 27
                 PushServerDataCollector::NAME,
28 28
                 'push-messages.html.twig',
29 29
             );
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
         $app['twig.loader.filesystem'] = $app->extend(
35 35
             'twig.loader.filesystem',
36
-            function (Twig_Loader_Filesystem $loader) {
36
+            function(Twig_Loader_Filesystem $loader) {
37 37
                 $loader->addPath(__DIR__.'/DataCollector/views');
38 38
 
39 39
                 return $loader;
Please login to merge, or discard this patch.