Skip to content

Commit f066669

Browse files
maartenpaauwgithub-actions[bot]
authored andcommitted
chore: fix code styling
1 parent b5df599 commit f066669

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

src/Commands/MakeSpecificationCommand.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@
1414
)]
1515
final class MakeSpecificationCommand extends GeneratorCommand
1616
{
17-
/**
18-
* @var string
19-
*/
20-
protected $type = 'Specification';
17+
protected string $type = 'Specification';
2118

2219
protected function getStub(): string
2320
{

workbench/app/LengthSpecification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ public function __construct(
2020
*/
2121
public function isSatisfiedBy(mixed $candidate): bool
2222
{
23-
return \mb_strlen($candidate) === $this->length;
23+
return mb_strlen($candidate) === $this->length;
2424
}
2525
}

0 commit comments

Comments
 (0)