Completed
Pull Request — 4.0 (#4394)
by Hideki
04:44
created
src/Eccube/Command/UpdateSchemaDoctrineCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
 use Symfony\Component\Console\Input\InputOption;
25 25
 use Symfony\Component\Console\Output\OutputInterface;
26 26
 use Symfony\Component\Console\Style\SymfonyStyle;
27
-use Symfony\Component\Finder\Finder;
28 27
 use Symfony\Component\Filesystem\Filesystem;
28
+use Symfony\Component\Finder\Finder;
29 29
 
30 30
 /**
31 31
  * Command to generate the SQL needed to update the database schema to match
Please login to merge, or discard this patch.
src/Eccube/Controller/Admin/AdminController.php 1 patch
Doc Comments   +8 added lines, -9 removed lines patch added patch discarded remove patch
@@ -412,7 +412,6 @@  discard block
 block discarded – undo
412 412
     }
413 413
 
414 414
     /**
415
-     * @param \Doctrine\ORM\EntityManagerInterface $em
416 415
      * @param array $excludes
417 416
      *
418 417
      * @return Request|null
@@ -445,9 +444,9 @@  discard block
 block discarded – undo
445 444
     }
446 445
 
447 446
     /**
448
-     * @param $dateTime
447
+     * @param \DateTime $dateTime
449 448
      *
450
-     * @return array|mixed
449
+     * @return null|Request
451 450
      *
452 451
      * @throws \Doctrine\ORM\NonUniqueResultException
453 452
      */
@@ -483,9 +482,9 @@  discard block
 block discarded – undo
483 482
     }
484 483
 
485 484
     /**
486
-     * @param $dateTime
485
+     * @param \DateTime $dateTime
487 486
      *
488
-     * @return array|mixed
487
+     * @return null|Request
489 488
      *
490 489
      * @throws \Doctrine\ORM\NonUniqueResultException
491 490
      */
@@ -523,7 +522,7 @@  discard block
 block discarded – undo
523 522
     /**
524 523
      * 在庫切れ商品数を取得
525 524
      *
526
-     * @return mixed
525
+     * @return null|Request
527 526
      *
528 527
      * @throws \Doctrine\ORM\NonUniqueResultException
529 528
      */
@@ -541,7 +540,7 @@  discard block
 block discarded – undo
541 540
     /**
542 541
      * 商品数を取得
543 542
      *
544
-     * @return mixed
543
+     * @return null|Request
545 544
      *
546 545
      * @throws \Doctrine\ORM\NonUniqueResultException
547 546
      */
@@ -558,7 +557,7 @@  discard block
 block discarded – undo
558 557
     /**
559 558
      * 本会員数を取得
560 559
      *
561
-     * @return mixed
560
+     * @return null|Request
562 561
      *
563 562
      * @throws \Doctrine\ORM\NonUniqueResultException
564 563
      */
@@ -577,7 +576,7 @@  discard block
 block discarded – undo
577 576
      *
578 577
      * @param Carbon $fromDate
579 578
      * @param Carbon $toDate
580
-     * @param $format
579
+     * @param string $format
581 580
      *
582 581
      * @return array
583 582
      */
Please login to merge, or discard this patch.
src/Eccube/Entity/Order.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1761,7 +1761,7 @@
 block discarded – undo
1761 1761
         /**
1762 1762
          * Set orderStatus.
1763 1763
          *
1764
-         * @param \Eccube\Entity\Master\OrderStatus|object|null $orderStatus
1764
+         * @param null|Master\OrderStatus $orderStatus
1765 1765
          *
1766 1766
          * @return Order
1767 1767
          */
Please login to merge, or discard this patch.