for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Yii\Cycle\Schema\Conveyor;
use Spiral\Attributes\AnnotationReader;
use Spiral\Attributes\AttributeReader;
use Spiral\Attributes\Composite\SelectiveReader;
use Spiral\Attributes\ReaderInterface;
final class CompositeSchemaConveyor extends MetadataSchemaConveyor
{
protected function getMetadataReader(): ?ReaderInterface
return new SelectiveReader([
new AttributeReader(),
new AnnotationReader(),
]);
}