replaced doctype annotation in methods with comment
This commit is contained in:
parent
da9d014c9d
commit
2856fa764b
1 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ class SequenceGenerator
|
||||||
*/
|
*/
|
||||||
protected function validateFreeNumber($count, $type)
|
protected function validateFreeNumber($count, $type)
|
||||||
{
|
{
|
||||||
/** @var EntityManager $em */
|
/* @var EntityManager $em */
|
||||||
$em = $this->entityManager;
|
$em = $this->entityManager;
|
||||||
try {
|
try {
|
||||||
$em->getConnection()->insert(
|
$em->getConnection()->insert(
|
||||||
|
@ -108,7 +108,7 @@ class SequenceGenerator
|
||||||
*/
|
*/
|
||||||
public function getLastNumberFor($type)
|
public function getLastNumberFor($type)
|
||||||
{
|
{
|
||||||
/** @var EntityManager $em */
|
/* @var EntityManager $em */
|
||||||
$em = $this->entityManager;
|
$em = $this->entityManager;
|
||||||
|
|
||||||
return $em->getConnection()->executeQuery(
|
return $em->getConnection()->executeQuery(
|
||||||
|
|
Loading…
Reference in a new issue