Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Nov 23, 2023
1 parent 9b6e2e3 commit cca57ed
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/AbstractQueryDataReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
use Yiisoft\Data\Reader\FilterInterface;
use Yiisoft\Data\Reader\Sort;
use Yiisoft\Db\Query\QueryInterface;

use function array_key_first;
use function is_array;
use function is_object;
Expand Down
1 change: 0 additions & 1 deletion tests/DataReaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ public function testCount(): void
* @dataProvider handlerDataProvider
* @param FilterInterface $filter
* @param string $handler
* @return void
*/
public function testHandlerByOperation(FilterInterface $filter, string $handler): void
{
Expand Down
1 change: 0 additions & 1 deletion tests/Support/CustomerDataReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

final class CustomerDataReader extends AbstractQueryDataReader
{

/**
* @inheritDoc
*/
Expand Down
3 changes: 2 additions & 1 deletion tests/Support/CustomerQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
namespace Yiisoft\Data\Db\Tests\Support;

use Yiisoft\Db\Query\Query;

use function count;

final class CustomerQuery extends Query
Expand All @@ -24,7 +25,7 @@ final class CustomerQuery extends Query
'id' => 3,
'email' => '[email protected]',
'user1' => 'address3',
]
],
];

public function all(): array
Expand Down

0 comments on commit cca57ed

Please sign in to comment.