Skip to content

Commit

Permalink
[PATCH] Removed superfluous PHPDoc (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] committed Jul 26, 2019
2 parents a44c9f1 + 95221d9 commit 34546e2
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 42 deletions.
6 changes: 0 additions & 6 deletions src/Bridge/Symfony/Bundle/Core23DoctrineBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,11 @@

final class Core23DoctrineBundle extends Bundle
{
/**
* {@inheritdoc}
*/
public function getPath()
{
return __DIR__.'/..';
}

/**
* {@inheritdoc}
*/
protected function getContainerExtensionClass()
{
return Core23DoctrineExtension::class;
Expand Down
3 changes: 0 additions & 3 deletions src/Bridge/Symfony/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@

final class Configuration implements ConfigurationInterface
{
/**
* {@inheritdoc}
*/
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder('core23_doctrine');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@

final class Core23DoctrineExtension extends Extension
{
/**
* {@inheritdoc}
*/
public function load(array $configs, ContainerBuilder $container): void
{
$configuration = new Configuration();
Expand Down
3 changes: 0 additions & 3 deletions src/EventListener/ORM/ConfirmableListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@

final class ConfirmableListener extends AbstractListener
{
/**
* {@inheritdoc}
*/
public function getSubscribedEvents()
{
return [
Expand Down
3 changes: 0 additions & 3 deletions src/EventListener/ORM/DeletableListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@

final class DeletableListener extends AbstractListener
{
/**
* {@inheritdoc}
*/
public function getSubscribedEvents()
{
return [
Expand Down
3 changes: 0 additions & 3 deletions src/EventListener/ORM/LifecycleDateListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@

final class LifecycleDateListener extends AbstractListener
{
/**
* {@inheritdoc}
*/
public function getSubscribedEvents()
{
return [
Expand Down
3 changes: 0 additions & 3 deletions src/EventListener/ORM/SortableListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ public function __construct(PropertyAccessor $propertyAccessor = null)
$this->propertyAccessor = $propertyAccessor;
}

/**
* {@inheritdoc}
*/
public function getSubscribedEvents()
{
return [
Expand Down
3 changes: 0 additions & 3 deletions src/EventListener/ORM/TablePrefixEventListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ public function __construct(?string $prefix)
$this->prefix = $prefix;
}

/**
* {@inheritdoc}
*/
public function getSubscribedEvents(): array
{
return [
Expand Down
3 changes: 0 additions & 3 deletions src/EventListener/ORM/UniqueActiveListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ public function __construct(PropertyAccessor $propertyAccessor = null)
$this->propertyAccessor = $propertyAccessor;
}

/**
* {@inheritdoc}
*/
public function getSubscribedEvents()
{
return [
Expand Down
12 changes: 0 additions & 12 deletions tests/Fixtures/DemoEntityManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 34546e2

Please sign in to comment.