Skip to content

Commit

Permalink
[PATCH] Removed superfluous PHPDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Jul 26, 2019
1 parent 7924d47 commit b3722d4
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 24 deletions.
3 changes: 0 additions & 3 deletions src/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_dompdf');
Expand Down
3 changes: 0 additions & 3 deletions src/DependencyInjection/Core23DompdfExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@

final class Core23DompdfExtension extends Extension
{
/**
* {@inheritdoc}
*/
public function load(array $configs, ContainerBuilder $container): void
{
$configuration = new Configuration();
Expand Down
6 changes: 0 additions & 6 deletions src/Factory/DompdfFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,11 @@ public function __construct(array $options = [])
$this->options = $options;
}

/**
* {@inheritdoc}
*/
public function create(array $options = []): Dompdf
{
return new Dompdf($this->createOptions($options));
}

/**
* {@inheritdoc}
*/
private function createOptions(array $options = []): Options
{
return new Options(array_merge($this->options, $options));
Expand Down
6 changes: 0 additions & 6 deletions src/Wrapper/DompdfWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ public function __construct(DompdfFactoryInterface $dompdfFactory, EventDispatch
$this->eventDispatcher = $eventDispatcher;
}

/**
* {@inheritdoc}
*/
public function streamHtml(string $html, string $filename, array $options = []): void
{
$pdf = $this->dompdfFactory->create($options);
Expand All @@ -64,9 +61,6 @@ public function getStreamResponse(string $html, string $filename, array $options
return $response;
}

/**
* {@inheritdoc}
*/
public function getPdf(string $html, array $options = []): string
{
$pdf = $this->dompdfFactory->create($options);
Expand Down
3 changes: 0 additions & 3 deletions tests/Factory/DompdfFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ final class DompdfFactoryTest extends TestCase
*/
private $dompdfFactory;

/**
* {@inheritdoc}
*/
protected function setUp(): void
{
$this->dompdfFactory = new DompdfFactory([
Expand Down
3 changes: 0 additions & 3 deletions tests/Wrapper/DompdfWrapperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ final class DompdfWrapperTest extends TestCase

private $dompdf;

/**
* {@inheritdoc}
*/
protected function setUp(): void
{
$this->dompdf = $this->createMock(Dompdf::class);
Expand Down

0 comments on commit b3722d4

Please sign in to comment.