Skip to content

Commit

Permalink
make properties private
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Jun 22, 2023
1 parent 13ffdc0 commit 312e171
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Action/CliEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ class CliEngine implements ActionInterface
protected const TYPE_JSON = 'application/json';
protected const TYPE_BINARY = 'application/octet-stream';

protected ?string $command = null;
protected ?string $type = null;
protected ?string $env = null;
protected ?string $cwd = null;
protected ?int $timeout = null;
private ?string $command = null;
private ?string $type = null;
private ?string $env = null;
private ?string $cwd = null;
private ?int $timeout = null;

private FactoryInterface $response;

Expand Down

0 comments on commit 312e171

Please sign in to comment.