optimized use statements

This commit is contained in:
Robin Krahnen 2021-09-20 18:12:51 +02:00
parent aab466ac17
commit 2b15d25ebe

View file

@ -5,7 +5,7 @@ declare(strict_types=1);
namespace DigiComp\Sequence\Service; namespace DigiComp\Sequence\Service;
use DigiComp\Sequence\Domain\Model\Insert; use DigiComp\Sequence\Domain\Model\Insert;
use Doctrine\DBAL\Exception as DBALException; use Doctrine\DBAL\Exception as DoctrineDBALException;
use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\EntityManagerInterface;
use Neos\Flow\Annotations as Flow; use Neos\Flow\Annotations as Flow;
use Neos\Utility\TypeHandling; use Neos\Utility\TypeHandling;
@ -35,10 +35,9 @@ class SequenceGenerator
/** /**
* @param string|object $type * @param string|object $type
*
* @return int * @return int
* @throws Exception * @throws Exception
* @throws DBALException * @throws DoctrineDBALException
*/ */
public function getNextNumberFor($type): int public function getNextNumberFor($type): int
{ {
@ -70,7 +69,7 @@ class SequenceGenerator
return true; return true;
} catch (\PDOException $e) { } catch (\PDOException $e) {
return false; return false;
} catch (DBALException $e) { } catch (DoctrineDBALException $e) {
if (!$e->getPrevious() instanceof \PDOException) { if (!$e->getPrevious() instanceof \PDOException) {
$this->logger->critical('Exception occured: ' . $e->getMessage()); $this->logger->critical('Exception occured: ' . $e->getMessage());
} }
@ -97,10 +96,9 @@ class SequenceGenerator
/** /**
* @param string|object $type * @param string|object $type
*
* @return int * @return int
* @throws Exception * @throws Exception
* @throws DBALException * @throws DoctrineDBALException
*/ */
public function getLastNumberFor($type): int public function getLastNumberFor($type): int
{ {