Completed
Push — 5.0 ( cadd37...918ecf )
by Ruud
100:31 queued 89:28
created
SearchBundle/Tests/DependencyInjection/KunstmaanSearchExtensionTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * Returns the Configuration to test
34 34
      *
35
-     * @return Configuration
35
+     * @return KunstmaanSearchExtension
36 36
      */
37 37
     protected function getExtension()
38 38
     {
Please login to merge, or discard this patch.
src/Kunstmaan/SeoBundle/Entity/Seo.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
     /**
186 186
      * @param string $title
187 187
      *
188
-     * @return string
188
+     * @return Seo
189 189
      */
190 190
     public function setMetaTitle($title)
191 191
     {
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
     }
288 288
 
289 289
     /**
290
-     * @return mixed
290
+     * @return string
291 291
      */
292 292
     public function getOgDescription()
293 293
     {
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
     }
308 308
 
309 309
     /**
310
-     * @return mixed
310
+     * @return Media
311 311
      */
312 312
     public function getOgImage()
313 313
     {
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
     }
328 328
 
329 329
     /**
330
-     * @return mixed
330
+     * @return string
331 331
      */
332 332
     public function getOgTitle()
333 333
     {
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
     }
348 348
 
349 349
     /**
350
-     * @return mixed
350
+     * @return string
351 351
      */
352 352
     public function getOgType()
353 353
     {
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/Twig/GoogleAnalyticsTwigExtension.php 1 patch
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.
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 1 patch
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.
src/Kunstmaan/TaggingBundle/Entity/Tagging.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -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.
src/Kunstmaan/TaggingBundle/Entity/TagManager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -70,6 +70,9 @@
 block discarded – undo
70 70
             ->getResult(self::TAGGING_HYDRATOR);
71 71
     }
72 72
 
73
+    /**
74
+     * @param integer $id
75
+     */
73 76
     public function findById($id)
74 77
     {
75 78
 
Please login to merge, or discard this patch.
src/Kunstmaan/TaggingBundle/Form/DataTransformer/TagsTransformer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
      *
81 81
      * @param mixed $value The value in the transformed representation
82 82
      *
83
-     * @return mixed The value in the original representation
83
+     * @return ArrayCollection The value in the original representation
84 84
      *
85 85
      * @throws UnexpectedTypeException       when the argument is not of the expected type
86 86
      * @throws TransformationFailedException when the transformation fails
Please login to merge, or discard this patch.