Skip to content

Commit 272b616

Browse files
committed
Rector fixes
1 parent 7829045 commit 272b616

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

tests/FileDirectoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use PhpIso\FileDirectory;
99
use PhpIso\IsoFile;
1010

11-
class FileDirectoryTest extends TestCase
11+
final class FileDirectoryTest extends TestCase
1212
{
1313
public function testInitWithInvalidBuffer(): void
1414
{

tests/IsoFileTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use PhpIso\PathTableRecord;
1919
use PhpIso\FileDirectory;
2020

21-
class IsoFileTest extends TestCase
21+
final class IsoFileTest extends TestCase
2222
{
2323
public function testConstructorFileDoesNotExist(): void
2424
{

tests/IsoFileTestUdf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use PhpIso\PathTableRecord;
1919
use PhpIso\FileDirectory;
2020

21-
class IsoFileTestUdf extends TestCase
21+
final class IsoFileTestUdf extends TestCase
2222
{
2323
#[DataProvider('isoFilesDataProvider')]
2424
public function testConstructorExistingUdfFile(string $testFile, int $descriptorCount): void

tests/PathTableRecordTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use PhpIso\Util\Buffer;
1010
use PhpIso\Exception;
1111

12-
class PathTableRecordTest extends TestCase
12+
final class PathTableRecordTest extends TestCase
1313
{
1414
public function testSetDirectoryNumber(): void
1515
{

tests/Util/BufferTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use PhpIso\Util\Buffer;
99
use PhpIso\Exception;
1010

11-
class BufferTest extends TestCase
11+
final class BufferTest extends TestCase
1212
{
1313
public function testAlign(): void
1414
{

tests/Util/IsoDateTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use PhpIso\Util\IsoDate;
99
use Carbon\Carbon;
1010

11-
class IsoDateTest extends TestCase
11+
final class IsoDateTest extends TestCase
1212
{
1313
public function testInit7ValidDate(): void
1414
{

0 commit comments

Comments
 (0)