for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace solutionDrive\SyliusProductBundlesPlugin\Factory;
use solutionDrive\SyliusProductBundlesPlugin\Entity\ProductBundleSlot;
use solutionDrive\SyliusProductBundlesPlugin\Entity\ProductBundleSlotInterface;
class ProductBundleSlotFactory implements ProductBundleSlotFactoryInterface
{
public function createNew(): ProductBundleSlotInterface
return new ProductBundleSlot();
}