for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SpeckCatalog\Service;
class Feature extends AbstractService
{
protected $entityMapper = 'speckcatalog_feature_mapper';
public function getFeatures($productId)
return $this->getEntityMapper()->getByProductId($productId);
}