62 lines
2.1 KiB
PHP
62 lines
2.1 KiB
PHP
<?= "<?php\n"; ?>
|
|
|
|
namespace <?= $namespace; ?>;
|
|
|
|
<?= $use_statements; ?>
|
|
|
|
/**
|
|
* @extends ServiceEntityRepository<<?= $entity_class_name; ?>>
|
|
*/
|
|
class <?= $class_name; ?> extends ServiceEntityRepository<?= $with_password_upgrade ? " implements PasswordUpgraderInterface\n" : "\n" ?>
|
|
{
|
|
public function __construct(ManagerRegistry $registry)
|
|
{
|
|
parent::__construct($registry, <?= $entity_class_name; ?>::class);
|
|
}
|
|
<?php if ($include_example_comments): // When adding a new method without existing default comments, the blank line is automatically added.?>
|
|
|
|
<?php endif; ?>
|
|
<?php if ($with_password_upgrade): ?>
|
|
/**
|
|
* Used to upgrade (rehash) the user's password automatically over time.
|
|
*/
|
|
public function upgradePassword(<?= sprintf('%s ', $password_upgrade_user_interface->getShortName()); ?>$user, string $newHashedPassword): void
|
|
{
|
|
if (!$user instanceof <?= $entity_class_name ?>) {
|
|
throw new UnsupportedUserException(sprintf('Instances of "%s" are not supported.', $user::class));
|
|
}
|
|
|
|
$user->setPassword($newHashedPassword);
|
|
$this->getEntityManager()->persist($user);
|
|
$this->getEntityManager()->flush();
|
|
}
|
|
|
|
<?php endif ?>
|
|
<?php if ($include_example_comments): ?>
|
|
// /**
|
|
// * @return <?= $entity_class_name ?>[] Returns an array of <?= $entity_class_name ?> objects
|
|
// */
|
|
// public function findByExampleField($value): array
|
|
// {
|
|
// return $this->createQueryBuilder('<?= $entity_alias; ?>')
|
|
// ->andWhere('<?= $entity_alias; ?>.exampleField = :val')
|
|
// ->setParameter('val', $value)
|
|
// ->orderBy('<?= $entity_alias; ?>.id', 'ASC')
|
|
// ->setMaxResults(10)
|
|
// ->getQuery()
|
|
// ->getResult()
|
|
// ;
|
|
// }
|
|
|
|
// public function findOneBySomeField($value): ?<?= $entity_class_name."\n" ?>
|
|
// {
|
|
// return $this->createQueryBuilder('<?= $entity_alias ?>')
|
|
// ->andWhere('<?= $entity_alias ?>.exampleField = :val')
|
|
// ->setParameter('val', $value)
|
|
// ->getQuery()
|
|
// ->getOneOrNullResult()
|
|
// ;
|
|
// }
|
|
<?php endif; ?>
|
|
}
|