Completed
Pull Request — master (#86)
by Jan Philipp
01:56
created
src/ScriptRuntime/DeferredProcessCommand.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,6 @@
 block discarded – undo
33 33
      * @param int $lineNumber
34 34
      * @param bool $ignoreError
35 35
      * @param bool $tty
36
-     * @param bool $deferred
37 36
      */
38 37
     public function __construct(
39 38
         string $shellCommand,
Please login to merge, or discard this patch.
src/ScriptRuntime/Execution/ProcessExecutor.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -259,7 +259,6 @@  discard block
 block discarded – undo
259 259
 
260 260
     /**
261 261
      * @param Process $process
262
-     * @param bool $ignoreError
263 262
      * @return bool
264 263
      */
265 264
     private function isProcessResultValid(Process $process, ProcessCommand $command): bool
@@ -357,7 +356,7 @@  discard block
 block discarded – undo
357 356
 
358 357
     /**
359 358
      * @param DeferredProcess $deferredProcess
360
-     * @param $index
359
+     * @param integer $index
361 360
      */
362 361
     private function logDeferredOutputStart(DeferredProcess $deferredProcess, $index)
363 362
     {
Please login to merge, or discard this patch.
src/Config/Config.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @param string|null $environmentString
106
+     * @param string|null $environment
107 107
      *
108 108
      * @return ScriptPath[]
109 109
      */
Please login to merge, or discard this patch.
src/ScriptRuntime/Execution/ProcessEnvironment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      * @param array $constants
43 43
      * @param array $variables
44 44
      * @param array $templates
45
-     * @param array $dotenvPaths
45
+     * @param ScriptPath[] $dotenvPaths
46 46
      */
47 47
     public function __construct(array $constants, array $variables, array $templates, array $dotenvPaths)
48 48
     {
Please login to merge, or discard this patch.