Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
kubawerlos committed Dec 12, 2021
1 parent 578bda9 commit 5a33afc
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -87,11 +87,16 @@ public function provideFixCases(): array
null,
['space' => 'none'],
],
'declare having multiple directives' => [
'declare having multiple directives, single' => [
'<?php declare(strict_types=1, ticks=1);',
'<?php declare(strict_types = 1, ticks = 1);',
[],
],
'declare having multiple directives, none' => [
'<?php declare(strict_types = 1, ticks = 1);',
'<?php declare(strict_types=1, ticks=1);',
['space' => 'single'],
],
];
}

Expand Down

0 comments on commit 5a33afc

Please sign in to comment.