for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File part of the Redmine User Provider bundle
*
* @category SymfonyBundle
* @package GMaissa.RedmineUserProviderBundle
* @author Guillaume Maïssa <[email protected]>
* @copyright 2017 Guillaume Maïssa
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
namespace GMaissa\RedmineUserProviderBundle\Repository\Doctrine\Orm;
use Doctrine\ORM\EntityRepository;
use GMaissa\RedmineUserProviderBundle\Repository\UserRepositoryInterface;
use Symfony\Component\Security\Core\User\UserInterface;
* Doctrine ORM User Repository Class
class UserRepository extends EntityRepository implements UserRepositoryInterface
{
* {@inheritdoc}
public function save(UserInterface $user)
$this->_em->persist($user);
$this->_em->flush();
}