for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LunixREST\Endpoints;
/**
* Class DoctrineEndpoint
* @package LunixREST\Endpoints
*/
abstract class DoctrineEndpoint extends Endpoint {
private $entityManager;
public function setEntityManager(EntityManager $em){
$this->entityManager = $em;
}