Completed
Push — dev/plugin-checker ( e6edd6 )
by Kiyotaka
06:18
created
codeception/acceptance/EA10PluginCest.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -414,6 +414,9 @@  discard block
 block discarded – undo
414 414
             ->削除();
415 415
     }
416 416
 
417
+    /**
418
+     * @param string $fileName
419
+     */
417 420
     private function publishPlugin($fileName)
418 421
     {
419 422
         copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName);
@@ -557,6 +560,9 @@  discard block
 block discarded – undo
557 560
     /** @var Store_Plugin */
558 561
     protected $dependency;
559 562
 
563
+    /**
564
+     * @param string $code
565
+     */
560 566
     public function __construct(AcceptanceTester $I, $code, Store_Plugin $dependency = null)
561 567
     {
562 568
         parent::__construct($I);
@@ -689,6 +695,9 @@  discard block
 block discarded – undo
689 695
         return $this;
690 696
     }
691 697
 
698
+    /**
699
+     * @param string $fileName
700
+     */
692 701
     protected function publishPlugin($fileName)
693 702
     {
694 703
         $published = copy(codecept_data_dir().'/'.'plugins/'.$fileName, codecept_root_dir().'/repos/'.$fileName);
@@ -707,6 +716,9 @@  discard block
 block discarded – undo
707 716
     /** @var string */
708 717
     private $code;
709 718
 
719
+    /**
720
+     * @param string $code
721
+     */
710 722
     public function __construct(AcceptanceTester $I, $code)
711 723
     {
712 724
         parent::__construct($I);
Please login to merge, or discard this patch.