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
+5 -5
View File
@@ -6,11 +6,11 @@ use Pest\Exceptions\InvalidExpectationValue;
use PHPUnit\Framework\ExpectationFailedException;
test('pass', function (): void {
expect('Zm9v')->toBeBase64() // 'foo' (no padding)
->and('Zm9vYg==')->toBeBase64() // 'foob' (with padding)
->and('Zm9vYmE=')->toBeBase64() // 'fooba' (with padding)
->and('Zm9vYmFy')->toBeBase64() // 'foobar' (no padding)
->and('')->toBeBase64(); // empty string
expect('Zm9v')->toBeBase64()
->and('Zm9vYg==')->toBeBase64()
->and('Zm9vYmE=')->toBeBase64()
->and('Zm9vYmFy')->toBeBase64()
->and('')->toBeBase64();
});
test('failures', function (): void {