Completed
Push — master ( 562960...518367 )
by Christian
02:52
created
Block/Service/PiwikStatisticBlockService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function __construct($name, EngineInterface $templating, LoggerInterface $logger)
40 40
     {
41
-        $this->logger    = $logger;
41
+        $this->logger = $logger;
42 42
 
43 43
         parent::__construct($name, $templating);
44 44
     }
Please login to merge, or discard this patch.
Block/Service/PiwikTrackerBlockService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      */
43 43
     public function buildEditForm(FormMapper $formMapper, BlockInterface $block)
44 44
     {
45
-        $formMapper->add('settings', 'sonata_type_immutable_array',   array(
45
+        $formMapper->add('settings', 'sonata_type_immutable_array', array(
46 46
             'keys' => array(
47 47
                 array('host', 'text', array(
48 48
                     'required' => false,
Please login to merge, or discard this patch.
Tests/Block/Service/PiwikStatisticBlockServiceTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,8 @@
 block discarded – undo
41 41
     {
42 42
         parent::setUp();
43 43
 
44
-        $this->logger  = $this->getMock('Psr\Log\LoggerInterface');
45
-        $this->factory  = $this->getMock('Core23\PiwikBundle\Client\ClientFactory');
44
+        $this->logger = $this->getMock('Psr\Log\LoggerInterface');
45
+        $this->factory = $this->getMock('Core23\PiwikBundle\Client\ClientFactory');
46 46
         $this->templating = new FakeTemplating();
47 47
     }
48 48
 
Please login to merge, or discard this patch.