chore: coding style changes

This commit is contained in:
nuno maduro
2026-08-07 14:52:56 +01:00
parent eb88513baf
commit 42d9b777bf
221 changed files with 139 additions and 3086 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ use Pest\Exceptions\InvalidExpectationValue;
use PHPUnit\Framework\ExpectationFailedException;
test('pass', function (): void {
expect('00:1a:2b:3c:4d:5e')->toBeMacAddress() // colon-separated
->and('00-1a-2b-3c-4d-5e')->toBeMacAddress() // hyphen-separated
expect('00:1a:2b:3c:4d:5e')->toBeMacAddress()
->and('00-1a-2b-3c-4d-5e')->toBeMacAddress()
->and('ff:ff:ff:ff:ff:ff')->toBeMacAddress();
});