Skip to content

Commit 70f0cdf

Browse files
committed
fixed CS
1 parent 7325dc1 commit 70f0cdf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Node/FunctionNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class FunctionNode extends AbstractNode
3434
* @param string $name
3535
* @param Token[] $arguments
3636
*/
37-
public function __construct(NodeInterface $selector, string $name, array $arguments = array())
37+
public function __construct(NodeInterface $selector, string $name, array $arguments = [])
3838
{
3939
$this->selector = $selector;
4040
$this->name = strtolower($name);

Parser/Token.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function isFileEnd(): bool
6262
return self::TYPE_FILE_END === $this->type;
6363
}
6464

65-
public function isDelimiter(array $values = array()): bool
65+
public function isDelimiter(array $values = []): bool
6666
{
6767
if (self::TYPE_DELIMITER !== $this->type) {
6868
return false;

0 commit comments

Comments
 (0)