Completed
Push — 5.1 ( a63100...e86e6d )
by Kristof
65:44 queued 65:35
created
src/Kunstmaan/SearchBundle/Search/Search.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -58,6 +58,7 @@
 block discarded – undo
58 58
 
59 59
     /**
60 60
      * {@inheritdoc}
61
+     * @param string $indexName
61 62
      */
62 63
     public function getIndex($indexName)
63 64
     {
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
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
     /**
187 187
      * Loops over the OrderItems and accumulates the value of the given property. Can also be a getter.
188 188
      *
189
-     * @param $property
189
+     * @param string $property
190 190
      *
191 191
      * @return int|string
192 192
      */
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
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     /**
27 27
      * Returns a list of functions to add to the existing list.
28 28
      *
29
-     * @return array An array of functions
29
+     * @return \Twig_SimpleFunction[] An array of functions
30 30
      */
31 31
     public function getFunctions()
32 32
     {
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
      *
127 127
      * @param array  &$arr   This is modified in place
128 128
      * @param string $option the key in the $arr array
129
-     * @param mixed  $value  the new value if the option wasn't set already
129
+     * @param string  $value  the new value if the option wasn't set already
130 130
      */
131 131
     private function setOptionIfNotSet(&$arr, $option, $value)
132 132
     {
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
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      * @Method({"GET", "POST"})
44 44
      * @Template("KunstmaanAdminListBundle:Default:add.html.twig")
45 45
      *
46
-     * @return array
46
+     * @return \Symfony\Component\HttpFoundation\Response
47 47
      */
48 48
     public function addAction(Request $request)
49 49
     {
Please login to merge, or discard this patch.
src/Kunstmaan/TranslatorBundle/Service/Migrations/MigrationsService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      *
90 90
      * @param ORM\Entity $entities        Result array with all entities to create an insert for
91 91
      * @param string     $entityClassName Class of the specified entity (same as entities)
92
-     * @param array      $ignoreFields    fields not to use in the insert query
92
+     * @param string[]      $ignoreFields    fields not to use in the insert query
93 93
      *
94 94
      * @return string an insert sql query, of no result nul
95 95
      */
Please login to merge, or discard this patch.
src/Kunstmaan/TranslatorBundle/Service/Translator/CacheValidator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     /**
49 49
      * Retrieve a Datetime of the oldest cache file made
50 50
      *
51
-     * @return DateTime mtime of oldest cache file
51
+     * @return null|\DateTime mtime of oldest cache file
52 52
      */
53 53
     public function getOldestCachefileDate()
54 54
     {
Please login to merge, or discard this patch.
src/Kunstmaan/UserManagementBundle/Controller/UsersController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@
 block discarded – undo
229 229
      *
230 230
      * @throws AccessDeniedException
231 231
      *
232
-     * @return array
232
+     * @return RedirectResponse
233 233
      */
234 234
     public function deleteAction(Request $request, $id)
235 235
     {
Please login to merge, or discard this patch.
src/Kunstmaan/UtilitiesBundle/Helper/Cipher/CipherInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@  discard block
 block discarded – undo
35 35
      *
36 36
      * @throws \Defuse\Crypto\Exception\IOException
37 37
      * @throws \Defuse\Crypto\Exception\EnvironmentIsBrokenException
38
+     * @return void
38 39
      */
39 40
     public function encryptFile($inputFile, $outputFile);
40 41
 
@@ -45,6 +46,7 @@  discard block
 block discarded – undo
45 46
      * @throws \Defuse\Crypto\Exception\WrongKeyOrModifiedCiphertextException
46 47
      * @throws \Defuse\Crypto\Exception\IOException
47 48
      * @throws \Defuse\Crypto\Exception\EnvironmentIsBrokenException
49
+     * @return void
48 50
      */
49 51
     public function decryptFile($inputFile, $outputFile);
50 52
 }
Please login to merge, or discard this patch.
src/Kunstmaan/VotingBundle/Services/RepositoryResolver.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * Constructor
24 24
      *
25
-     * @param object $em entity manager
25
+     * @param EntityManager $em entity manager
26 26
      */
27 27
     public function __construct(EntityManager $em)
28 28
     {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      *
35 35
      * @param Event $event event
36 36
      *
37
-     * @return Repository
37
+     * @return \Doctrine\Common\Persistence\ObjectRepository|null
38 38
      */
39 39
     public function getRepositoryForEvent($event)
40 40
     {
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      *
69 69
      * @param string $name name
70 70
      *
71
-     * @return Repository
71
+     * @return \Doctrine\Common\Persistence\ObjectRepository
72 72
      */
73 73
     protected function getRepository($name)
74 74
     {
Please login to merge, or discard this patch.