Skip to content

Commit

Permalink
fix by codeSniffer
Browse files Browse the repository at this point in the history
  • Loading branch information
dnicknick committed Jan 12, 2024
1 parent 571294c commit 65861c8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/src/Deploy.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace AppDeploy;


class Deploy
{
readonly private DeployDTO $dto;
Expand Down Expand Up @@ -103,13 +102,13 @@ private function doCommand(string $commandLine): bool|string

private function log(string $message): void
{
error_log('log: '. $message, 3, $this->dto->logFile);
error_log('log: ' . $message, 3, $this->dto->logFile);
error_log(PHP_EOL, 3, $this->dto->logFile);
}

private function logStep(string $message): void
{
error_log('Step: '. $message, 3, $this->dto->logFile);
error_log('Step: ' . $message, 3, $this->dto->logFile);
error_log(PHP_EOL, 3, $this->dto->logFile);
error_log(PHP_EOL, 3, $this->dto->logFile);
}
Expand Down

0 comments on commit 65861c8

Please sign in to comment.