Skip to content

Commit 0fe05e6

Browse files
authored
Merge pull request #347 from garak/fix-ci-cs
fix CS in CI
2 parents 26b90f8 + fe88492 commit 0fe05e6

File tree

5 files changed

+2
-4
lines changed

5 files changed

+2
-4
lines changed

.github/workflows/build.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
uses: actions/checkout@v4
3333
- name: Fix CS
3434
uses: docker://oskarstark/php-cs-fixer-ga
35+
with:
36+
args: --diff --dry-run
3537
tests:
3638
runs-on: ubuntu-24.04
3739
strategy:

src/Knp/Component/Pager/Event/Subscriber/Filtration/Doctrine/ORM/QuerySubscriber.php

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace Knp\Component\Pager\Event\Subscriber\Filtration\Doctrine\ORM;
44

55
use Doctrine\ORM\Query;
6-
use Knp\Component\Pager\ArgumentAccess\ArgumentAccessInterface;
76
use Knp\Component\Pager\Event\ItemsEvent;
87
use Knp\Component\Pager\Event\Subscriber\Filtration\Doctrine\ORM\Query\WhereWalker;
98
use Knp\Component\Pager\Event\Subscriber\Paginate\Doctrine\ORM\Query\Helper as QueryHelper;

src/Knp/Component/Pager/Event/Subscriber/Sortable/ArraySubscriber.php

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Knp\Component\Pager\Event\Subscriber\Sortable;
44

5-
use Knp\Component\Pager\ArgumentAccess\ArgumentAccessInterface;
65
use Knp\Component\Pager\Event\ItemsEvent;
76
use Knp\Component\Pager\Exception\InvalidValueException;
87
use Knp\Component\Pager\PaginatorInterface;

src/Knp/Component/Pager/Event/Subscriber/Sortable/SolariumQuerySubscriber.php

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Knp\Component\Pager\Event\Subscriber\Sortable;
44

5-
use Knp\Component\Pager\ArgumentAccess\ArgumentAccessInterface;
65
use Knp\Component\Pager\Event\ItemsEvent;
76
use Knp\Component\Pager\Exception\InvalidValueException;
87
use Knp\Component\Pager\PaginatorInterface;

tests/Test/Pager/PaginatorTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use Knp\Component\Pager\Event\BeforeEvent;
77
use Knp\Component\Pager\Event\ItemsEvent;
88
use Knp\Component\Pager\Event\Subscriber\Paginate\PaginationSubscriber;
9-
use Knp\Component\Pager\Pagination\SlidingPagination;
109
use Knp\Component\Pager\Paginator;
1110
use PHPUnit\Framework\Attributes\Test;
1211
use Symfony\Component\EventDispatcher\EventDispatcher;

0 commit comments

Comments
 (0)