Skip to content

Commit

Permalink
DevKit updates for 5.x branch (#1208)
Browse files Browse the repository at this point in the history
Co-authored-by: Vincent Langlet <vincentlanglet@hotmail.fr>
  • Loading branch information
SonataCI and VincentLanglet committed Apr 3, 2024
1 parent e844e6e commit 56faf4a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .php-cs-fixer.dist.php
Expand Up @@ -45,7 +45,7 @@
'no_useless_return' => true,
'no_superfluous_elseif' => true,
'no_superfluous_phpdoc_tags' => ['allow_mixed' => true, 'remove_inheritdoc' => true],
'nullable_type_declaration_for_default_null_value' => ['use_nullable_type_declaration' => true],
'nullable_type_declaration_for_default_null_value' => true,
'ordered_class_elements' => true,
'ordered_imports' => ['sort_algorithm' => 'alpha', 'imports_order' => ['class', 'function', 'const']],
'phpdoc_order' => ['order' => ['var', 'param', 'throws', 'return', 'phpstan-var', 'psalm-var', 'phpstan-param', 'psalm-param', 'phpstan-return', 'psalm-return']],
Expand Down
12 changes: 6 additions & 6 deletions tests/Block/Service/RssBlockServiceTest.php
Expand Up @@ -69,12 +69,12 @@ public function testExecute(): void

$this->twig->expects(static::once())->method('render')
->with('@SonataBlock/Block/block_core_rss.html.twig', [
'feeds' => false,
'block' => $block,
'settings' => [
'title' => 'foo',
'url' => 'http://example.com',
],
'feeds' => false,
'block' => $block,
'settings' => [
'title' => 'foo',
'url' => 'http://example.com',
],
]);

$service = new RssBlockService($this->twig);
Expand Down
4 changes: 2 additions & 2 deletions tests/Block/Service/TextBlockServiceTest.php
Expand Up @@ -63,8 +63,8 @@ public function testExecute(): void

$this->twig->expects(static::once())->method('render')
->with('@SonataBlock/Block/block_core_text.html.twig', [
'block' => $block,
'settings' => ['content' => 'foo'],
'block' => $block,
'settings' => ['content' => 'foo'],
]);

$service = new TextBlockService($this->twig);
Expand Down

0 comments on commit 56faf4a

Please sign in to comment.