Skip to content

Commit

Permalink
fixed property types or default values
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Aug 27, 2018
1 parent a06179f commit ca80e7b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/Runner/Job.php
Expand Up @@ -40,20 +40,20 @@ class Job
/** @var string[] environment variables for test */ /** @var string[] environment variables for test */
private $envVars; private $envVars;


/** @var resource */ /** @var resource|null */
private $proc; private $proc;


/** @var resource */ /** @var resource|null */
private $stdout; private $stdout;


/** @var resource */ /** @var resource|null */
private $stderr; private $stderr;


/** @var int */ /** @var int */
private $exitCode = self::CODE_NONE; private $exitCode = self::CODE_NONE;


/** @var string[] output headers */ /** @var string[] output headers */
private $headers; private $headers = [];




public function __construct(Test $test, PhpInterpreter $interpreter, array $envVars = null) public function __construct(Test $test, PhpInterpreter $interpreter, array $envVars = null)
Expand Down
2 changes: 1 addition & 1 deletion src/Runner/Runner.php
Expand Up @@ -42,7 +42,7 @@ class Runner
private $jobs; private $jobs;


/** @var bool */ /** @var bool */
private $interrupted; private $interrupted = false;


/** @var string|null */ /** @var string|null */
private $tempDir; private $tempDir;
Expand Down

0 comments on commit ca80e7b

Please sign in to comment.