Completed
Pull Request — 4.0 (#4465)
by kazunori
04:30
created
src/Eccube/Repository/ProductRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@
 block discarded – undo
226 226
 
227 227
         // id
228 228
         if (isset($searchData['id']) && StringUtil::isNotBlank($searchData['id'])) {
229
-            $id = preg_match('/^\d{0,10}$/', $searchData['id'])  ? $searchData['id'] : null;
229
+            $id = preg_match('/^\d{0,10}$/', $searchData['id']) ? $searchData['id'] : null;
230 230
             if ($id && $id > '2147483647' && $this->isPostgreSQL()) {
231 231
                 $id = null;
232 232
             }
Please login to merge, or discard this patch.
codeception/acceptance/EA10PluginCest.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -456,6 +456,9 @@  discard block
 block discarded – undo
456 456
         $I->see('[1]');
457 457
     }
458 458
 
459
+    /**
460
+     * @param string $fileName
461
+     */
459 462
     private function publishPlugin($fileName)
460 463
     {
461 464
         copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName);
@@ -602,6 +605,9 @@  discard block
 block discarded – undo
602 605
     /** @var Store_Plugin */
603 606
     protected $dependency;
604 607
 
608
+    /**
609
+     * @param string $code
610
+     */
605 611
     public function __construct(AcceptanceTester $I, $code, Store_Plugin $dependency = null)
606 612
     {
607 613
         parent::__construct($I);
@@ -734,6 +740,9 @@  discard block
 block discarded – undo
734 740
         return $this;
735 741
     }
736 742
 
743
+    /**
744
+     * @param string $fileName
745
+     */
737 746
     protected function publishPlugin($fileName)
738 747
     {
739 748
         $published = copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName);
@@ -752,6 +761,9 @@  discard block
 block discarded – undo
752 761
     /** @var string */
753 762
     private $code;
754 763
 
764
+    /**
765
+     * @param string $code
766
+     */
755 767
     public function __construct(AcceptanceTester $I, $code)
756 768
     {
757 769
         parent::__construct($I);
Please login to merge, or discard this patch.