for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Doyo\UserBundle\Manager;
/**
* Abstract Group Manager implementation which can be used as base class for your
* concrete manager.
*
* @author Anthonius Munthi <[email protected]>
*/
abstract class GroupManager implements GroupManagerInterface
{
* {@inheritdoc}
public function createGroup($name)
$class = $this->getClass();
return new $class($name);
}
public function findGroupByName($name)
return $this->findGroupBy(array('name' => $name));