@@ -48,19 +48,19 @@ discard block |
||
48 | 48 | */ |
49 | 49 | private function bootFilters(): \Generator |
50 | 50 | { |
51 | - yield new TwigFilter('string', function (string $string): string { |
|
51 | + yield new TwigFilter('string', function(string $string): string { |
|
52 | 52 | $generator = new ValueGenerator($string, ValueGenerator::TYPE_STRING); |
53 | 53 | |
54 | 54 | return $generator->generate(); |
55 | 55 | }); |
56 | 56 | |
57 | - yield new TwigFilter('boolean', function (string $string): string { |
|
57 | + yield new TwigFilter('boolean', function(string $string): string { |
|
58 | 58 | $generator = new ValueGenerator($string, ValueGenerator::TYPE_BOOL); |
59 | 59 | |
60 | 60 | return $generator->generate(); |
61 | 61 | }); |
62 | 62 | |
63 | - yield new TwigFilter('array', function (array $items, int $depth = 0): string { |
|
63 | + yield new TwigFilter('array', function(array $items, int $depth = 0): string { |
|
64 | 64 | $generator = new ValueGenerator($items, ValueGenerator::TYPE_ARRAY_SHORT); |
65 | 65 | |
66 | 66 | $generator->setArrayDepth($depth); |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | return $generator->generate(); |
69 | 69 | }); |
70 | 70 | |
71 | - yield new TwigFilter('class', function ($object): string { |
|
71 | + yield new TwigFilter('class', function($object): string { |
|
72 | 72 | if (\is_object($object)) { |
73 | 73 | return \get_class($object); |
74 | 74 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | return \json_encode($object); |
77 | 77 | }); |
78 | 78 | |
79 | - yield new TwigFilter('value', function ($value): string { |
|
79 | + yield new TwigFilter('value', function($value): string { |
|
80 | 80 | return (new ValueGenerator($value))->generate(); |
81 | 81 | }); |
82 | 82 | } |
@@ -14,7 +14,7 @@ |
||
14 | 14 | */ |
15 | 15 | interface Renderer |
16 | 16 | { |
17 | - public const BASE_DIRECTORY = __DIR__ . '/../../../resources/templates'; |
|
17 | + public const BASE_DIRECTORY = __DIR__.'/../../../resources/templates'; |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * @param string $directory |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | public function __construct(string $body, string $class) |
37 | 37 | { |
38 | 38 | $this->body = $body; |
39 | - $this->as($class . '.php'); |
|
39 | + $this->as($class.'.php'); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
@@ -65,14 +65,14 @@ discard block |
||
65 | 65 | */ |
66 | 66 | public function saveTo(string $directory): Readable |
67 | 67 | { |
68 | - $path = $directory . \DIRECTORY_SEPARATOR . $this->file; |
|
68 | + $path = $directory.\DIRECTORY_SEPARATOR.$this->file; |
|
69 | 69 | |
70 | - if (\is_file($path) && ! @\unlink($path)) { |
|
71 | - throw new NotReadableException('Could not save a new source into ' . $path); |
|
70 | + if (\is_file($path) && !@\unlink($path)) { |
|
71 | + throw new NotReadableException('Could not save a new source into '.$path); |
|
72 | 72 | } |
73 | 73 | |
74 | - if (! @\file_put_contents($path, $this->body)) { |
|
75 | - throw new NotReadableException('Could not save a new source into ' . $path); |
|
74 | + if (!@\file_put_contents($path, $this->body)) { |
|
75 | + throw new NotReadableException('Could not save a new source into '.$path); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | return File::fromPathname($path); |
@@ -49,7 +49,7 @@ |
||
49 | 49 | public function lex(Readable $input): \Traversable |
50 | 50 | { |
51 | 51 | foreach ($this->exec($this->pattern, $input->getContents()) as $token) { |
52 | - if (! \in_array($token->name(), $this->skipped, true)) { |
|
52 | + if (!\in_array($token->name(), $this->skipped, true)) { |
|
53 | 53 | yield $token; |
54 | 54 | } |
55 | 55 | } |
@@ -38,7 +38,7 @@ |
||
38 | 38 | public function __construct(string $name, $value, int $offset = 0) |
39 | 39 | { |
40 | 40 | $this->name = $name; |
41 | - $this->value = (array)$value; |
|
41 | + $this->value = (array) $value; |
|
42 | 42 | $this->offset = $offset; |
43 | 43 | } |
44 | 44 |
@@ -31,12 +31,12 @@ |
||
31 | 31 | */ |
32 | 32 | public function __toString(): string |
33 | 33 | { |
34 | - $format = function (string $value) { |
|
35 | - $value = (string)(\preg_replace('/\s+/iu', ' ', $value) ?? $value); |
|
34 | + $format = function(string $value) { |
|
35 | + $value = (string) (\preg_replace('/\s+/iu', ' ', $value) ?? $value); |
|
36 | 36 | $value = \addcslashes($value, '"'); |
37 | 37 | |
38 | 38 | if (\mb_strlen($value) > 35) { |
39 | - $value = \mb_substr($value, 0, 30) . |
|
39 | + $value = \mb_substr($value, 0, 30). |
|
40 | 40 | \sprintf('… (%s+)', \mb_strlen($value) - 30); |
41 | 41 | } |
42 | 42 |
@@ -38,7 +38,7 @@ |
||
38 | 38 | public function lex(Readable $input): \Traversable |
39 | 39 | { |
40 | 40 | foreach ($this->exec($this->pcre->compile(), $input->getContents()) as $token) { |
41 | - if (! \in_array($token->name(), $this->skipped, true)) { |
|
41 | + if (!\in_array($token->name(), $this->skipped, true)) { |
|
42 | 42 | yield $token; |
43 | 43 | } |
44 | 44 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | $message = \error_get_last()['message'] ?? \sprintf('Unprocessable PCRE %s', $pcre); |
70 | 70 | $message = \str_replace('preg_match(): Compilation failed: ', '', $message); |
71 | 71 | |
72 | - throw new BadLexemeException('Unprocessable PCRE (' . $message . ')'); |
|
72 | + throw new BadLexemeException('Unprocessable PCRE ('.$message.')'); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | return true; |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | */ |
90 | 90 | private function flags(): string |
91 | 91 | { |
92 | - return self::FLAG_UNICODE . self::FLAG_DOT_ALL . self::FLAG_ANALYZED; |
|
92 | + return self::FLAG_UNICODE.self::FLAG_DOT_ALL.self::FLAG_ANALYZED; |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |
@@ -175,6 +175,6 @@ discard block |
||
175 | 175 | */ |
176 | 176 | private function escapeString(string $value): string |
177 | 177 | { |
178 | - return \str_replace(self::REGEX_DELIMITER, '\\' . self::REGEX_DELIMITER, $value); |
|
178 | + return \str_replace(self::REGEX_DELIMITER, '\\'.self::REGEX_DELIMITER, $value); |
|
179 | 179 | } |
180 | 180 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | */ |
57 | 57 | public function __construct() |
58 | 58 | { |
59 | - if (! \class_exists(Lexer::class)) { |
|
59 | + if (!\class_exists(Lexer::class)) { |
|
60 | 60 | throw new UnsupportedLexerRuntimeException('This runtime required parle extension'); |
61 | 61 | } |
62 | 62 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | $this->map[$this->id] = $name; |
78 | 78 | $this->tokens[$this->id] = $pcre; |
79 | 79 | } catch (LexerException $e) { |
80 | - $message = \preg_replace('/rule\h+id\h+\d+/iu', 'token ' . $name, $e->getMessage()); |
|
80 | + $message = \preg_replace('/rule\h+id\h+\d+/iu', 'token '.$name, $e->getMessage()); |
|
81 | 81 | |
82 | 82 | throw new BadLexemeException($message); |
83 | 83 | } |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | public function lex(Readable $input): \Traversable |
116 | 116 | { |
117 | 117 | foreach ($this->exec($input) as $token) { |
118 | - if (! \in_array($token->name(), $this->skip, true)) { |
|
118 | + if (!\in_array($token->name(), $this->skip, true)) { |
|
119 | 119 | yield $token; |
120 | 120 | } |
121 | 121 | } |