Skip to content

Commit 0725010

Browse files
authored
fix: remove resumable method (#4686)
1 parent ff668ea commit 0725010

File tree

3 files changed

+0
-18
lines changed

3 files changed

+0
-18
lines changed

src/Symfony/Bundle/Processor/TraceableChainProcessor.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,6 @@ private function traceProcessors($data, array $context = [])
4949
}
5050
}
5151

52-
public function resumable(?string $operationName = null, array $context = []): bool
53-
{
54-
return false;
55-
}
56-
5752
public function process($data, array $uriVariables = [], ?string $operationName = null, array $context = [])
5853
{
5954
$this->traceProcessors($data, $context);

tests/Fixtures/TestBundle/State/DummyDtoNoOutputProcessor.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,6 @@ public function __construct(ManagerRegistry $registry)
2929
$this->registry = $registry;
3030
}
3131

32-
/**
33-
* {@inheritDoc}
34-
*/
35-
public function resumable(?string $operationName = null, array $context = []): bool
36-
{
37-
return false;
38-
}
39-
4032
/**
4133
* {@inheritDoc}
4234
*/

tests/Fixtures/TestBundle/State/OperationResourceProcessor.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,6 @@ public function __construct(ManagerRegistry $managerRegistry)
3333
$this->managerRegistry = $managerRegistry;
3434
}
3535

36-
public function resumable(?string $operationName = null, array $context = []): bool
37-
{
38-
return false;
39-
}
40-
4136
public function supports($data, array $identifiers = [], ?string $operationName = null, array $context = []): bool
4237
{
4338
return $data instanceof OperationResource;

0 commit comments

Comments
 (0)