Skip to content

Commit c8abe28

Browse files
committed
make all methods on the abstract class final
1 parent fa7882f commit c8abe28

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Schema/AbstractSchemaInnerParse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ final protected function getDataType(mixed $input): string
124124
return \is_object($input) ? $input::class : \gettype($input);
125125
}
126126

127-
protected function varExport(mixed $input): string
127+
final protected function varExport(mixed $input): string
128128
{
129129
if ($input instanceof \DateTimeInterface) {
130130
return 'new \DateTimeImmutable(\''.$input->format('c').'\')';

0 commit comments

Comments
 (0)