diff --git a/src/Bridge/Symfony/Bundle/Core23DoctrineBundle.php b/src/Bridge/Symfony/Bundle/Core23DoctrineBundle.php index b5c6b06c..869cc624 100644 --- a/src/Bridge/Symfony/Bundle/Core23DoctrineBundle.php +++ b/src/Bridge/Symfony/Bundle/Core23DoctrineBundle.php @@ -16,17 +16,11 @@ final class Core23DoctrineBundle extends Bundle { - /** - * {@inheritdoc} - */ public function getPath() { return __DIR__.'/..'; } - /** - * {@inheritdoc} - */ protected function getContainerExtensionClass() { return Core23DoctrineExtension::class; diff --git a/src/Bridge/Symfony/DependencyInjection/Configuration.php b/src/Bridge/Symfony/DependencyInjection/Configuration.php index 96113de4..c00aaa60 100644 --- a/src/Bridge/Symfony/DependencyInjection/Configuration.php +++ b/src/Bridge/Symfony/DependencyInjection/Configuration.php @@ -17,9 +17,6 @@ final class Configuration implements ConfigurationInterface { - /** - * {@inheritdoc} - */ public function getConfigTreeBuilder() { $treeBuilder = new TreeBuilder('core23_doctrine'); diff --git a/src/Bridge/Symfony/DependencyInjection/Core23DoctrineExtension.php b/src/Bridge/Symfony/DependencyInjection/Core23DoctrineExtension.php index 2c644675..9a06d27a 100644 --- a/src/Bridge/Symfony/DependencyInjection/Core23DoctrineExtension.php +++ b/src/Bridge/Symfony/DependencyInjection/Core23DoctrineExtension.php @@ -18,9 +18,6 @@ final class Core23DoctrineExtension extends Extension { - /** - * {@inheritdoc} - */ public function load(array $configs, ContainerBuilder $container): void { $configuration = new Configuration(); diff --git a/src/EventListener/ORM/ConfirmableListener.php b/src/EventListener/ORM/ConfirmableListener.php index b1921abf..57dd6197 100644 --- a/src/EventListener/ORM/ConfirmableListener.php +++ b/src/EventListener/ORM/ConfirmableListener.php @@ -21,9 +21,6 @@ final class ConfirmableListener extends AbstractListener { - /** - * {@inheritdoc} - */ public function getSubscribedEvents() { return [ diff --git a/src/EventListener/ORM/DeletableListener.php b/src/EventListener/ORM/DeletableListener.php index 7acfd9cf..9cf90a0f 100644 --- a/src/EventListener/ORM/DeletableListener.php +++ b/src/EventListener/ORM/DeletableListener.php @@ -21,9 +21,6 @@ final class DeletableListener extends AbstractListener { - /** - * {@inheritdoc} - */ public function getSubscribedEvents() { return [ diff --git a/src/EventListener/ORM/LifecycleDateListener.php b/src/EventListener/ORM/LifecycleDateListener.php index 77028252..68dba478 100644 --- a/src/EventListener/ORM/LifecycleDateListener.php +++ b/src/EventListener/ORM/LifecycleDateListener.php @@ -24,9 +24,6 @@ final class LifecycleDateListener extends AbstractListener { - /** - * {@inheritdoc} - */ public function getSubscribedEvents() { return [ diff --git a/src/EventListener/ORM/SortableListener.php b/src/EventListener/ORM/SortableListener.php index 860fd6f2..e4dc0c27 100644 --- a/src/EventListener/ORM/SortableListener.php +++ b/src/EventListener/ORM/SortableListener.php @@ -48,9 +48,6 @@ public function __construct(PropertyAccessor $propertyAccessor = null) $this->propertyAccessor = $propertyAccessor; } - /** - * {@inheritdoc} - */ public function getSubscribedEvents() { return [ diff --git a/src/EventListener/ORM/TablePrefixEventListener.php b/src/EventListener/ORM/TablePrefixEventListener.php index 2bcad098..900e06bb 100644 --- a/src/EventListener/ORM/TablePrefixEventListener.php +++ b/src/EventListener/ORM/TablePrefixEventListener.php @@ -31,9 +31,6 @@ public function __construct(?string $prefix) $this->prefix = $prefix; } - /** - * {@inheritdoc} - */ public function getSubscribedEvents(): array { return [ diff --git a/src/EventListener/ORM/UniqueActiveListener.php b/src/EventListener/ORM/UniqueActiveListener.php index a16633f9..df0f58e6 100644 --- a/src/EventListener/ORM/UniqueActiveListener.php +++ b/src/EventListener/ORM/UniqueActiveListener.php @@ -43,9 +43,6 @@ public function __construct(PropertyAccessor $propertyAccessor = null) $this->propertyAccessor = $propertyAccessor; } - /** - * {@inheritdoc} - */ public function getSubscribedEvents() { return [ diff --git a/tests/Fixtures/DemoEntityManager.php b/tests/Fixtures/DemoEntityManager.php index 7ad081a2..0cdbf4e4 100644 --- a/tests/Fixtures/DemoEntityManager.php +++ b/tests/Fixtures/DemoEntityManager.php @@ -29,33 +29,21 @@ public function __construct(EntityRepository $repository) $this->repository = $repository; } - /** - * {@inheritdoc} - */ public function getQueryBuilder(string $alias, string $indexBy = null) { return $this->createQueryBuilder($alias, $indexBy); } - /** - * {@inheritdoc} - */ public function searchWhereQueryBuilder(QueryBuilder $qb, string $field, array $values, bool $strict = false): Composite { return $this->searchWhere($qb, $field, $values, $strict); } - /** - * {@inheritdoc} - */ public function addOrderToQueryBuilder(QueryBuilder $builder, array $sort, string $defaultEntity, array $aliasMapping = [], string $defaultOrder = 'asc'): QueryBuilder { return $this->addOrder($builder, $sort, $defaultEntity, $aliasMapping, $defaultOrder); } - /** - * {@inheritdoc} - */ protected function getRepository(): EntityRepository { return $this->repository;