for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace TypedArraysTest\Unit\Fixtures;
use TypedArrays\AbstractTypedArray;
final class NullableSimpleObjectArray extends AbstractTypedArray
{
protected function typeToEnforce(): string
return SimpleObject::class;
}
protected function isMutable(): bool
return true;
protected function isNullAllowed(): bool