Skip to content

Instantly share code, notes, and snippets.

@rskuipers
Last active August 29, 2015 13:56
Show Gist options
  • Save rskuipers/9093248 to your computer and use it in GitHub Desktop.
Save rskuipers/9093248 to your computer and use it in GitHub Desktop.
Abstract Service ZF2
<?php
namespace Application\Service;
use Doctrine\ORM\EntityManagerInterface;
/**
* Class AbstractService
* @package Application\Service
*/
abstract class AbstractService
{
/**
* @var EntityManagerInterface
*/
protected $entityManager;
/**
* @param EntityManagerInterface $entityManager
*/
public function __construct(EntityManagerInterface $entityManager)
{
$this->entityManager = $entityManager;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment