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
{
private $foo;
$foo
static function getDataSet(): array
return [
1 => [
'foo' => 'bar',
],
2 => [
'bar' => 'baz',
];
}