Completed
Push — 6.0 ( b300c2...83be5d )
by Ruud
58:05 queued 42:53
created
src/Kunstmaan/SeoBundle/EventListener/CloneListener.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Kunstmaan\SeoBundle\EventListener;
4 4
 
5 5
 use Doctrine\ORM\EntityManager;
6
-
7 6
 use Kunstmaan\AdminBundle\Entity\AbstractEntity;
8 7
 use Kunstmaan\AdminBundle\Event\DeepCloneAndSaveEvent;
9 8
 use Kunstmaan\AdminBundle\Helper\CloneHelper;
Please login to merge, or discard this patch.
src/Kunstmaan/SeoBundle/Helper/Order.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
     /**
192 192
      * Loops over the OrderItems and accumulates the value of the given property. Can also be a getter.
193 193
      *
194
-     * @param $property
194
+     * @param string $property
195 195
      * @return int|string
196 196
      */
197 197
     private function accumulatePropertyOnOrderItems($property)
Please login to merge, or discard this patch.
src/Kunstmaan/SeoBundle/Repository/SeoRepository.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Kunstmaan\SeoBundle\Repository;
4 4
 
5 5
 use Doctrine\ORM\EntityRepository;
6
-
7 6
 use Kunstmaan\AdminBundle\Entity\AbstractEntity;
8 7
 use Kunstmaan\SeoBundle\Entity\Seo;
9 8
 use Kunstmaan\UtilitiesBundle\Helper\ClassLookup;
Please login to merge, or discard this patch.
src/Kunstmaan/SeoBundle/Twig/GoogleAnalyticsTwigExtension.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * Returns a list of functions to add to the existing list.
29 29
      *
30
-     * @return array An array of functions
30
+     * @return \Twig_SimpleFunction[] An array of functions
31 31
      */
32 32
     public function getFunctions()
33 33
     {
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      *
131 131
      * @param array  &$arr   This is modified in place.
132 132
      * @param string $option The key in the $arr array.
133
-     * @param mixed  $value  The new value if the option wasn't set already.
133
+     * @param string  $value  The new value if the option wasn't set already.
134 134
      */
135 135
     private function setOptionIfNotSet(&$arr, $option, $value)
136 136
     {
Please login to merge, or discard this patch.
Unused Use Statements   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,12 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Kunstmaan\SeoBundle\Twig;
4 4
 
5
-use Kunstmaan\SeoBundle\Helper\Order,
6
-    Kunstmaan\SeoBundle\Helper\OrderConverter,
7
-    Kunstmaan\SeoBundle\Helper\OrderPreparer;
8
-
9
-use Twig_Environment,
10
-    Twig_Extension;
5
+use Kunstmaan\SeoBundle\Helper\Order;
6
+use Kunstmaan\SeoBundle\Helper\OrderConverter;
7
+use Kunstmaan\SeoBundle\Helper\OrderPreparer;
8
+use Twig_Environment;
9
+use Twig_Extension;
11 10
 
12 11
 /**
13 12
  * Twig extensions for Google Analytics
Please login to merge, or discard this patch.
src/Kunstmaan/SeoBundle/Twig/SeoTwigExtension.php 2 patches
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -4,13 +4,9 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\ORM\EntityManager;
6 6
 use Kunstmaan\AdminBundle\Entity\AbstractEntity;
7
-
8 7
 use Kunstmaan\NodeBundle\Entity\AbstractPage;
9
-
10 8
 use Kunstmaan\SeoBundle\Entity\Seo;
11
-
12 9
 use Twig_Environment;
13
-
14 10
 use Twig_Extension;
15 11
 
16 12
 /**
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * Returns a list of functions to add to the existing list.
19 19
      *
20
-     * @return array An array of functions
20
+     * @return \Twig_SimpleFunction[] An array of functions
21 21
      */
22 22
     public function getFunctions()
23 23
     {
Please login to merge, or discard this patch.
src/Kunstmaan/TaggingBundle/AdminList/TagAdminListConfigurator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Kunstmaan\TaggingBundle\AdminList;
4 4
 
5 5
 use Doctrine\ORM\EntityManager;
6
-
7 6
 use Kunstmaan\AdminBundle\Helper\Security\Acl\AclHelper;
8 7
 use Kunstmaan\AdminListBundle\AdminList\Configurator\AbstractDoctrineORMAdminListConfigurator;
9 8
 use Kunstmaan\AdminListBundle\AdminList\FilterType\ORM;
Please login to merge, or discard this patch.
src/Kunstmaan/TaggingBundle/Controller/TagAdminListController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      * @Route("/add", name="kunstmaantaggingbundle_admin_tag_add")
43 43
      * @Method({"GET", "POST"})
44 44
      * @Template("KunstmaanAdminListBundle:Default:add.html.twig")
45
-     * @return array
45
+     * @return \Symfony\Component\HttpFoundation\Response
46 46
      */
47 47
     public function addAction(Request $request)
48 48
     {
Please login to merge, or discard this patch.
src/Kunstmaan/TaggingBundle/Entity/Tag.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
     /**
111 111
      * Get createdAt
112 112
      *
113
-     * @return datetime
113
+     * @return \DateTime
114 114
      */
115 115
     public function getCreatedAt()
116 116
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Gedmo\Mapping\Annotation as Gedmo;
8 8
 use Gedmo\Translatable\Translatable;
9 9
 use Kunstmaan\TaggingBundle\Form\TagAdminType;
10
-
11 10
 use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
12 11
 
13 12
 /**
Please login to merge, or discard this patch.
src/Kunstmaan/TaggingBundle/Entity/Tagging.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\ORM\Mapping as ORM;
6 6
 use DoctrineExtensions\Taggable\Entity\Tag as BaseTag;
7
-
8 7
 use DoctrineExtensions\Taggable\Entity\Tagging as BaseTagging;
9 8
 
10 9
 /**
Please login to merge, or discard this patch.
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     /**
91 91
      * Set resourceType
92 92
      *
93
-     * @param $resourceType
93
+     * @param string $resourceType
94 94
      */
95 95
     public function setResourceType($resourceType)
96 96
     {
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     /**
111 111
      * Set resourceId
112 112
      *
113
-     * @param $resourceId
113
+     * @param integer $resourceId
114 114
      */
115 115
     public function setResourceId($resourceId)
116 116
     {
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     /**
141 141
      * Get createdAt
142 142
      *
143
-     * @return datetime
143
+     * @return \DateTime
144 144
      */
145 145
     public function getCreatedAt()
146 146
     {
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
     /**
161 161
      * Get updatedAt
162 162
      *
163
-     * @return datetime
163
+     * @return \DateTime
164 164
      */
165 165
     public function getUpdatedAt()
166 166
     {
Please login to merge, or discard this patch.