Skip to content

Commit

Permalink
fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
mike4git committed Jan 16, 2024
1 parent 51392d8 commit c684057
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 16 deletions.
2 changes: 1 addition & 1 deletion src/DependencyInjection/NeustaElasticIndexExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

final class NeustaElasticIndexExtension extends Extension
{
public function load(array $configs, ContainerBuilder $container): void // @phpstan-ignore-line
public function load(array $configs, ContainerBuilder $container): void
{
$loader = new Loader\YamlFileLoader($container, new FileLocator(\dirname(__DIR__, 2) . '/config'));
$loader->load('services.yaml');
Expand Down
7 changes: 0 additions & 7 deletions tests/Fixture/Filter/TestDataFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,11 @@

class TestDataFilter implements DataFilter
{

/**
* @inheritDoc
*/
public function filter(DataCollection $elements): iterable
{
return $elements;
}

/**
* @inheritDoc
*/
public function filterOne(object $element): ?object
{
return null;
Expand Down
4 changes: 0 additions & 4 deletions tests/Fixture/Messenger/TestDataMessageFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@

class TestDataMessageFactory implements DataMessageFactory
{

/**
* @inheritDoc
*/
public function create(object $object): DataMessage
{
return new DataMessage($object);
Expand Down
4 changes: 0 additions & 4 deletions tests/Fixture/Repository/TestDataRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@

class TestDataRepository implements DataRepository
{

/**
* @inheritDoc
*/
public function findAll(): DataCollection
{
// TODO: Implement findAll() method.
Expand Down

0 comments on commit c684057

Please sign in to comment.