Completed
Push — master ( 5fa50d...80d39f )
by Peter
16:03 queued 12:56
created
src/Command/ScanStoragesCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
      * @param \AnimeDb\Bundle\CatalogBundle\Entity\Storage $storage
260 260
      * @param \Symfony\Component\Finder\SplFileInfo $file
261 261
      *
262
-     * @return \AnimeDb\Bundle\CatalogBundle\Entity\Item|boolean
262
+     * @return \AnimeDb\Bundle\CatalogBundle\Entity\Item
263 263
      */
264 264
     protected function getItemFromFile(Storage $storage, SplFileInfo $file)
265 265
     {
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
      * @param \Symfony\Component\Console\Input\InputInterface $input
332 332
      * @param \Symfony\Component\Console\Output\OutputInterface $output
333 333
      *
334
-     * @return \AnimeDb\Bundle\CatalogBundle\Console\Output\Decorator
334
+     * @return PresetOutput
335 335
      */
336 336
     protected function getProgress(InputInterface $input, OutputInterface $output)
337 337
     {
Please login to merge, or discard this patch.
src/Controller/UpdateController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
      *
103 103
      * @param string $plugin
104 104
      *
105
-     * @return array|null
105
+     * @return null|\Symfony\Component\HttpFoundation\Response
106 106
      */
107 107
     protected function getPlugin($plugin)
108 108
     {
Please login to merge, or discard this patch.
src/Entity/Country.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     /**
107 107
      * Get id
108 108
      *
109
-     * @return string
109
+     * @return integer
110 110
      */
111 111
     public function getId()
112 112
     {
Please login to merge, or discard this patch.
src/Entity/Storage.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
     /**
366 366
      * Get types storage allow write
367 367
      *
368
-     * @return array
368
+     * @return string[]
369 369
      */
370 370
     public static function getTypesWritable()
371 371
     {
@@ -375,7 +375,7 @@  discard block
 block discarded – undo
375 375
     /**
376 376
      * Get types storage allow read
377 377
      *
378
-     * @return array
378
+     * @return string[]
379 379
      */
380 380
     public static function getTypesReadable()
381 381
     {
Please login to merge, or discard this patch.
src/Menu/Builder.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
     /**
145 145
      * Add plugin items in menu
146 146
      *
147
-     * @param \AnimeDb\Bundle\CatalogBundle\Service\Plugin\Chain $chain
147
+     * @param Chain $chain
148 148
      * @param \Knp\Menu\ItemInterface $root
149 149
      * @param string $label
150 150
      * @param string|null $title
@@ -171,7 +171,6 @@  discard block
 block discarded – undo
171 171
      * Builder main menu
172 172
      * 
173 173
      * @param \Knp\Menu\FactoryInterface $factory
174
-     * @param array $item
175 174
      *
176 175
      * @return 
177 176
      */
Please login to merge, or discard this patch.
src/Repository/Item.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,10 +39,10 @@
 block discarded – undo
39 39
     /**
40 40
      * Get items list
41 41
      *
42
-     * @param integer|null $limit
43
-     * @param integer|null $offset
42
+     * @param integer $limit
43
+     * @param integer $offset
44 44
      *
45
-     * @return array [\AnimeDb\Bundle\CatalogBundle\Entity\Item]
45
+     * @return null|\Symfony\Component\HttpFoundation\Response [\AnimeDb\Bundle\CatalogBundle\Entity\Item]
46 46
      */
47 47
     public function getList($limit = 0, $offset = 0)
48 48
     {
Please login to merge, or discard this patch.
src/Repository/Storage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     /**
40 40
      * Get storage list for types
41 41
      *
42
-     * @param array $types
42
+     * @param string[] $types
43 43
      *
44 44
      * @return array [\AnimeDb\Bundle\CatalogBundle\Entity\Storage]
45 45
      */
Please login to merge, or discard this patch.
src/Service/TwigExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      * @param string $path
36 36
      * @param string $filter
37 37
      *
38
-     * @return boolean
38
+     * @return string
39 39
      */
40 40
     public function dummy($path, $filter)
41 41
     {
Please login to merge, or discard this patch.