Skip to content

Commit 26c1cb2

Browse files
committed
Fixed style issues.
1 parent 60cfc36 commit 26c1cb2

4 files changed

Lines changed: 4 additions & 6 deletions

File tree

src/Collection/AsyncRecordCollection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ public function getCurrent(): array
2828
return $this->records->getCurrent();
2929
}
3030

31-
public function getPreviousCollection(): ?AsyncRecordCollection
31+
public function getPreviousCollection(): ?self
3232
{
3333
return $this->previousCollection;
3434
}
3535

36-
public function findFirstCollection(): ?AsyncRecordCollection
36+
public function findFirstCollection(): ?self
3737
{
3838
do {
3939
$previous = $nextPrevious ?? $this->getPreviousCollection();

src/Collection/RecordCollection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ public function rewind(): void
4747
$this->records->rewind();
4848
}
4949

50-
public function getPreviousCollection(): ?RecordCollection
50+
public function getPreviousCollection(): ?self
5151
{
5252
return $this->previousCollection;
5353
}
5454

55-
public function findFirstCollection(): ?RecordCollection
55+
public function findFirstCollection(): ?self
5656
{
5757
do {
5858
$previous = $nextPrevious ?? $this->getPreviousCollection();

test/FixtureFactory.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
use ScriptFUSION\Porter\Connector\Connector;
88
use ScriptFUSION\Porter\Connector\ImportConnector;
99
use ScriptFUSION\Porter\Connector\Recoverable\RecoverableExceptionHandler;
10-
use ScriptFUSION\Porter\Connector\Recoverable\StatelessRecoverableExceptionHandler;
1110
use ScriptFUSION\Porter\Specification\ImportSpecification;
1211
use ScriptFUSION\StaticClass;
1312

test/Integration/Porter/Connector/ImportConnectorTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ final class ImportConnectorTest extends TestCase
2222
{
2323
use MockeryPHPUnitIntegration;
2424

25-
2625
/**
2726
* Tests that when retry() is called multiple times, the original fetch exception handler is unmodified.
2827
* This is expected because the handler must be cloned using the prototype pattern to ensure multiple concurrent

0 commit comments

Comments
 (0)