Completed
Push — master ( fd59c6...f2565d )
by Paweł
18s
created
src/SWP/Bundle/AnalyticsBundle/Model/ArticleStatisticsInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 /*
5 5
  * This file is part of the Superdesk Web Publisher Analytics Bundle.
6 6
  *
Please login to merge, or discard this patch.
src/SWP/Bundle/AnalyticsBundle/EventListener/AnalyticsEventListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the Superdesk Web Publisher Analytics Bundle.
Please login to merge, or discard this patch.
SWP/Bundle/AnalyticsBundle/Services/ArticleStatisticsServiceInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace SWP\Bundle\AnalyticsBundle\Services;
6 6
 
Please login to merge, or discard this patch.
src/SWP/Bundle/AnalyticsBundle/Services/ArticleStatisticsService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the Superdesk Web Publisher Analytics Bundle.
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentBundle/Doctrine/ORM/ArticleRepository.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 namespace SWP\Bundle\ContentBundle\Doctrine\ORM;
18 18
 
19 19
 use Doctrine\ORM\QueryBuilder;
20
-use Elastica\Query;
21 20
 use SWP\Bundle\ContentBundle\Model\ArticleSourceReference;
22 21
 use SWP\Component\Common\Criteria\Criteria;
23 22
 use SWP\Bundle\ContentBundle\Doctrine\ArticleRepositoryInterface;
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentBundle/Loader/ArticleLoader.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,6 @@
 block discarded – undo
68 68
     /**
69 69
      * ArticleLoader constructor.
70 70
      *
71
-     * @param ArticleRepositoryInterface $articleRepository
72 71
      * @param RouteProviderInterface     $routeProvider
73 72
      * @param ObjectManager              $dm
74 73
      * @param MetaFactoryInterface       $metaFactory
Please login to merge, or discard this patch.
src/SWP/Bundle/AnalyticsBundle/Model/ArticleEventInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 /*
5 5
  * This file is part of the Superdesk Web Publisher Analytics Bundle.
6 6
  *
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     /**
49 49
      * @param null|string $value
50 50
      */
51
-    public function setValue(?string $value): void;
51
+    public function setValue(?string $value) : void;
52 52
 
53 53
     /**
54 54
      * @return ArticleStatisticsInterface
Please login to merge, or discard this patch.
src/SWP/Bundle/AnalyticsBundle/Model/ArticleEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     /**
81 81
      * {@inheritdoc}
82 82
      */
83
-    public function setValue(?string $value): void
83
+    public function setValue(?string $value) : void
84 84
     {
85 85
         $this->value = $value;
86 86
     }
Please login to merge, or discard this patch.