Completed
Push — 0.4.27 ( 0f41d9...48632f )
by Peter
03:15
created
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/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/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 Storage $storage
260 260
      * @param SplFileInfo $file
261 261
      *
262
-     * @return Item|bool
262
+     * @return Item
263 263
      */
264 264
     protected function getItemFromFile(Storage $storage, SplFileInfo $file)
265 265
     {
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
      * @param InputInterface $input
333 333
      * @param OutputInterface $output
334 334
      *
335
-     * @return Decorator
335
+     * @return PresetOutput
336 336
      */
337 337
     protected function getProgress(InputInterface $input, OutputInterface $output)
338 338
     {
Please login to merge, or discard this patch.
src/Console/Output/LazyWrite.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     }
51 51
 
52 52
     /**
53
-     * @param array|string $messages
53
+     * @param string $messages
54 54
      * @param int $type
55 55
      */
56 56
     public function writeln($messages, $type = self::OUTPUT_NORMAL)
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|Response
106 106
      */
107 107
     protected function getPlugin($plugin)
108 108
     {
Please login to merge, or discard this patch.
src/Event/Listener/Install.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,12 +12,11 @@
 block discarded – undo
12 12
 
13 13
 use AnimeDb\Bundle\AnimeDbBundle\Manipulator\Parameters;
14 14
 use AnimeDb\Bundle\AppBundle\Service\CacheClearer;
15
-use AnimeDb\Bundle\CatalogBundle\Event\Install\Samples;
15
+use AnimeDb\Bundle\CatalogBundle\Event\Install\Samples as SamplesInstall;
16 16
 use Doctrine\Common\Persistence\ObjectManager;
17 17
 use Symfony\Component\Filesystem\Filesystem;
18 18
 use Symfony\Component\HttpKernel\KernelInterface;
19 19
 use Symfony\Component\Translation\TranslatorInterface;
20
-use AnimeDb\Bundle\CatalogBundle\Event\Install\Samples as SamplesInstall;
21 20
 use AnimeDb\Bundle\CatalogBundle\Entity\Storage;
22 21
 use AnimeDb\Bundle\CatalogBundle\Entity\Label;
23 22
 use AnimeDb\Bundle\CatalogBundle\Event\Listener\Install\Item;
Please login to merge, or discard this patch.
src/Plugin/Fill/Filler/Filler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
     }
45 45
 
46 46
     /**
47
-     * @return Filler
47
+     * @return FillerForm
48 48
      */
49 49
     public function getForm()
50 50
     {
Please login to merge, or discard this patch.
src/Repository/Item.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-     * @param int|null $limit
37
-     * @param int|null $offset
36
+     * @param integer $limit
37
+     * @param integer $offset
38 38
      *
39 39
      * @return ItemEntity[]
40 40
      */
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
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      * @param string $path
35 35
      * @param string $filter
36 36
      *
37
-     * @return bool
37
+     * @return string
38 38
      */
39 39
     public function dummy($path, $filter)
40 40
     {
Please login to merge, or discard this patch.