for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cycle\Schema\Renderer;
use Cycle\ORM\SchemaInterface;
class SchemaConstants implements ConstantsInterface
{
public function all(): array
return array_filter(
(new \ReflectionClass(SchemaInterface::class))->getConstants(),
'is_int'
);
}