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 NonNullableSimpleObjectArray extends AbstractTypedArray
{
protected function typeToEnforce(): string
return SimpleObject::class;
}
protected function isNullAllowed(): bool
return false;