Initial commit

This commit is contained in:
Henrik Hautakoski 2026-04-22 06:56:10 +02:00
commit c677cfccd4
23 changed files with 5553 additions and 0 deletions

View file

@ -0,0 +1,9 @@
<?php
use Shufflingpixels\IO\SeekMode;
it('maps to native seek constants', function () {
expect(SeekMode::SET->value)->toBe(SEEK_SET)
->and(SeekMode::CUR->value)->toBe(SEEK_CUR)
->and(SeekMode::END->value)->toBe(SEEK_END);
});