for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace EcodevTests\Felix\DBAL\Types;
use Ecodev\Felix\DBAL\Types\SetType;
class ExampleSet extends SetType
{
protected function getPossibleValues(): array
return ['value1', 'value2'];
}