for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Platine\Framework\Demo\Repository;
use Platine\Framework\Demo\Entity\User;
use Platine\Orm\EntityManager;
use Platine\Orm\Repository;
/**
* Description of UserRepository
*
* @author tony
*/
class UserRepository extends Repository
{
public function __construct(EntityManager $manager)
parent::__construct($manager, User::class);
}