Skip to content

Commit 23a5a4a

Browse files
committed
Add missing experimental tags for new routing system
1 parent 9f50383 commit 23a5a4a

File tree

59 files changed

+173
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+173
-0
lines changed

src/Component/src/State/Factory.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
use Sylius\Resource\Symfony\ExpressionLanguage\ArgumentParserInterface;
2222
use Webmozart\Assert\Assert;
2323

24+
/**
25+
* @experimental
26+
*/
2427
final class Factory implements FactoryInterface
2528
{
2629
public function __construct(

src/Component/src/State/Processor/FlashProcessor.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
use Sylius\Resource\Symfony\Session\Flash\FlashHelperInterface;
2121
use Symfony\Component\HttpFoundation\Response;
2222

23+
/**
24+
* @experimental
25+
*/
2326
final class FlashProcessor implements ProcessorInterface
2427
{
2528
public function __construct(

src/Component/src/State/Processor/RespondProcessor.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
use Symfony\Component\HttpFoundation\Response;
2121
use Webmozart\Assert\Assert;
2222

23+
/**
24+
* @experimental
25+
*/
2326
final class RespondProcessor implements ProcessorInterface
2427
{
2528
public function __construct(

src/Component/src/State/Processor/WriteProcessor.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
use Sylius\Resource\State\ProcessorInterface;
1919
use Symfony\Component\HttpFoundation\Response;
2020

21+
/**
22+
* @experimental
23+
*/
2124
final class WriteProcessor implements ProcessorInterface
2225
{
2326
public function __construct(

src/Component/src/State/Provider/FactoryProvider.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
use Sylius\Resource\State\FactoryInterface;
2121
use Sylius\Resource\State\ProviderInterface;
2222

23+
/**
24+
* @experimental
25+
*/
2326
final class FactoryProvider implements ProviderInterface
2427
{
2528
public function __construct(

src/Component/src/State/Provider/ReadProvider.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
use Sylius\Resource\State\ProviderInterface;
2121
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
2222

23+
/**
24+
* @experimental
25+
*/
2326
final class ReadProvider implements ProviderInterface
2427
{
2528
public function __construct(

src/Component/src/State/Responder.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
use Sylius\Resource\Metadata\Operation;
1919
use Webmozart\Assert\Assert;
2020

21+
/**
22+
* @experimental
23+
*/
2124
final class Responder implements ResponderInterface
2225
{
2326
public function __construct(private ContainerInterface $locator)

src/Component/src/State/ResponderInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
use Sylius\Resource\Context\Context;
1717
use Sylius\Resource\Metadata\Operation;
1818

19+
/**
20+
* @experimental
21+
*/
1922
interface ResponderInterface
2023
{
2124
/**

src/Component/src/StateMachine/OperationStateMachine.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
use Sylius\Resource\Metadata\StateMachineAwareOperationInterface;
2020
use Webmozart\Assert\Assert;
2121

22+
/**
23+
* @experimental
24+
*/
2225
final class OperationStateMachine implements OperationStateMachineInterface
2326
{
2427
public function __construct(private ContainerInterface $locator)

src/Component/src/StateMachine/OperationStateMachineInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
use Sylius\Resource\Context\Context;
1717
use Sylius\Resource\Metadata\Operation;
1818

19+
/**
20+
* @experimental
21+
*/
1922
interface OperationStateMachineInterface
2023
{
2124
public function can(object $data, Operation $operation, Context $context): bool;

0 commit comments

Comments
 (0)