Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Mar 16, 2023
1 parent 060f335 commit dd2c132
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion monorepo/HydeStan/HydeStan.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ private function getFiles(): array
private function analyseFile(string $file, string $contents): void
{
$fileAnalysers = [
new NoFixMeAnalyser($file, $contents)
new NoFixMeAnalyser($file, $contents),
];

foreach ($fileAnalysers as $analyser) {
Expand Down Expand Up @@ -222,11 +222,13 @@ public function run(string $file, int $lineNumber, string $line): void
interface FileAnalyserContract
{
public function __construct(string $file, string $contents);

public function run(string $file, string $contents): void;
}

interface LineAnalyserContract
{
public function __construct(string $file, int $lineNumber, string $line);

public function run(string $file, int $lineNumber, string $line): void;
}

0 comments on commit dd2c132

Please sign in to comment.