for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\Core\Content\Flow\Aggregate\FlowTemplate;
use Shopware\Core\Framework\DataAbstractionLayer\EntityCollection;
/**
* @package business-ops
*
* @extends EntityCollection<FlowTemplateEntity>
*/
class FlowTemplateCollection extends EntityCollection
{
public function getApiAlias(): string
return 'flow_template_collection';
}
protected function getExpectedClass(): string
return FlowTemplateEntity::class;