Skip to content

Commit

Permalink
codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
peldax committed Nov 4, 2020
1 parent 48d06e4 commit 4fd706c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions tests/Unit/Tokenizer/TokenizerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,21 @@ public function simpleDataProvider() : array
[
'"""' . \PHP_EOL . ' foo' . \PHP_EOL . ' foo' . \PHP_EOL . '"""',
[
new \Graphpinator\Tokenizer\Token(TokenType::STRING, new \Graphpinator\Source\Location(1, 1), 'foo' . \PHP_EOL . ' foo'),
new \Graphpinator\Tokenizer\Token(
TokenType::STRING,
new \Graphpinator\Source\Location(1, 1),
'foo' . \PHP_EOL . ' foo',
),
],
],
[
'""" foo' . \PHP_EOL . \PHP_EOL . ' foo' . \PHP_EOL . \PHP_EOL . ' foo"""',
[
new \Graphpinator\Tokenizer\Token(TokenType::STRING, new \Graphpinator\Source\Location(1, 1), ' foo' . \PHP_EOL . \PHP_EOL . ' foo' . \PHP_EOL . \PHP_EOL . 'foo'),
new \Graphpinator\Tokenizer\Token(
TokenType::STRING,
new \Graphpinator\Source\Location(1, 1),
' foo' . \PHP_EOL . \PHP_EOL . ' foo' . \PHP_EOL . \PHP_EOL . 'foo',
),
],
],
[
Expand Down

0 comments on commit 4fd706c

Please sign in to comment.