Skip to content

Commit

Permalink
Fix CS/WS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Aug 30, 2021
1 parent 8af1349 commit 317c703
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Runner/PlainTextTracer.php
Expand Up @@ -43,7 +43,7 @@ public function trace(Event $event): void
file_put_contents(
$this->path,
$telemetryInfo . implode($indentation, $lines) . PHP_EOL,
FILE_APPEND|LOCK_EX
FILE_APPEND | LOCK_EX
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/Util/Printer.php
Expand Up @@ -92,7 +92,7 @@ public function write(string $buffer): void
assert($this->isOpen);

if (PHP_SAPI !== 'cli' && PHP_SAPI !== 'phpdbg' && $this->isPhpStream) {
$buffer = htmlspecialchars($buffer, ENT_COMPAT|ENT_SUBSTITUTE);
$buffer = htmlspecialchars($buffer, ENT_COMPAT | ENT_SUBSTITUTE);
}

fwrite($this->stream, $buffer);
Expand Down
Expand Up @@ -11,7 +11,7 @@

interface InterfaceWithMethodsThatDeclareBooleanReturnTypes
{
public function returnsIntOrFalse(): int | false;
public function returnsIntOrFalse(): int|false;

public function returnsBool(): bool;
}

0 comments on commit 317c703

Please sign in to comment.