Skip to content

Commit

Permalink
[CS][DX] Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylius Bot committed Jan 16, 2023
1 parent 3a65f0a commit 0c3591a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ protected function setUp(): void

/**
* @test
*
* @dataProvider invalidIdentifierValues
*/
public function it_treats_non_string_values_as_not_identifiers(mixed $invalidValue): void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ private function appendOrderByIdentifier(SelectStatement $ast, string $dqlAlias)
$expression = new PathExpression(
PathExpression::TYPE_STATE_FIELD | PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION,
$dqlAlias,
$metadata->getSingleIdentifierFieldName()
$metadata->getSingleIdentifierFieldName(),
);
$expression->type = PathExpression::TYPE_STATE_FIELD;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ class CancelOrderStateMachineCallbackPassTest extends AbstractCompilerPassTestCa
],
];


/** @test */
public function it_triggers_deprecation_error_when_old_callback_name_is_used(): void
{
Expand Down

0 comments on commit 0c3591a

Please sign in to comment.