Completed
Pull Request — master (#668)
by Davert
03:07
created
src/SelfUpdateCommand.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -24,6 +24,11 @@
 block discarded – undo
24 24
 
25 25
     protected $applicationName;
26 26
 
27
+    /**
28
+     * @param string $applicationName
29
+     * @param string $currentVersion
30
+     * @param string $gitHubRepository
31
+     */
27 32
     public function __construct($applicationName = null, $currentVersion = null, $gitHubRepository = null)
28 33
     {
29 34
         parent::__construct(self::SELF_UPDATE_COMMAND_NAME);
Please login to merge, or discard this patch.
src/Common/ExecTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -380,7 +380,7 @@
 block discarded – undo
380 380
     }
381 381
 
382 382
     /**
383
-     * @param $command
383
+     * @param string $command
384 384
      *
385 385
      * @return mixed
386 386
      */
Please login to merge, or discard this patch.
src/Common/ProcessUtils.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -72,6 +72,9 @@
 block discarded – undo
72 72
         return "'".str_replace("'", "'\\''", $argument)."'";
73 73
     }
74 74
 
75
+    /**
76
+     * @param string $char
77
+     */
75 78
     private static function isSurroundedBy($arg, $char)
76 79
     {
77 80
         return 2 < strlen($arg) && $char === $arg[0] && $char === $arg[strlen($arg) - 1];
Please login to merge, or discard this patch.