Skip to content

Commit

Permalink
[PATCH] Removed superfluous PHPDoc (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] committed Jul 26, 2019
2 parents 7ab6867 + 95001bb commit fc540bd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
12 changes: 0 additions & 12 deletions src/Block/Service/GDPRInformationBlockService.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ public function __construct(string $name, EngineInterface $templating, RequestSt
$this->request = $request;
}

/**
* {@inheritdoc}
*/
public function execute(BlockContextInterface $blockContext, Response $response = null)
{
if ($this->hasGdprCookie()) {
Expand All @@ -59,9 +56,6 @@ public function execute(BlockContextInterface $blockContext, Response $response
return $this->renderPrivateResponse($blockContext->getTemplate(), $parameters, $response);
}

/**
* {@inheritdoc}
*/
public function buildEditForm(FormMapper $formMapper, BlockInterface $block): void
{
$formMapper->add('settings', ImmutableArrayType::class, [
Expand All @@ -88,9 +82,6 @@ public function buildEditForm(FormMapper $formMapper, BlockInterface $block): vo
]);
}

/**
* {@inheritdoc}
*/
public function configureSettings(OptionsResolver $resolver): void
{
$resolver->setDefaults([
Expand All @@ -101,9 +92,6 @@ public function configureSettings(OptionsResolver $resolver): void
]);
}

/**
* {@inheritdoc}
*/
public function getBlockMetadata($code = null)
{
return new Metadata($this->getName(), $code ?? $this->getName(), null, 'Core23GDPRBundle', [
Expand Down
3 changes: 0 additions & 3 deletions src/DependencyInjection/Core23GDPRExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@

final class Core23GDPRExtension extends Extension
{
/**
* {@inheritdoc}
*/
public function load(array $configs, ContainerBuilder $container): void
{
$loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
Expand Down

0 comments on commit fc540bd

Please sign in to comment.