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