for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Byscripts\StaticEntity\Tests\Fixtures;
use Byscripts\StaticEntity\AbstractStaticEntity;
class BadProperty extends AbstractStaticEntity
{
static public function getDataSet(): array
return [
1 => [
'foo' => 'bar',
],
];
}