Skip to content

Commit 43b8f76

Browse files
committed
cs
1 parent 9b464fd commit 43b8f76

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/RobotLoader/RobotLoader.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ public function addDirectory(string ...$paths): static
135135
}
136136

137137

138-
public function reportParseErrors(bool $on = true): static
138+
public function reportParseErrors(bool $state = true): static
139139
{
140-
$this->reportParseErrors = $on;
140+
$this->reportParseErrors = $state;
141141
return $this;
142142
}
143143

@@ -385,9 +385,9 @@ private function scanPhp(string $file): array
385385
/**
386386
* Sets auto-refresh mode.
387387
*/
388-
public function setAutoRefresh(bool $on = true): static
388+
public function setAutoRefresh(bool $state = true): static
389389
{
390-
$this->autoRebuild = $on;
390+
$this->autoRebuild = $state;
391391
return $this;
392392
}
393393

0 commit comments

Comments
 (0)