Skip to content

Commit c18169f

Browse files
committed
cs
1 parent daaf59e commit c18169f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/Application/LinkGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Nette\Http\UrlScript;
1111
use Nette\Routing\Router;
1212
use Nette\Utils\Reflection;
13-
use function array_intersect_key, array_key_exists, http_build_query, is_string, is_subclass_of, parse_str, preg_match, rtrim, str_contains, str_ends_with, strcasecmp, strlen, strncmp, strtr, substr, trigger_error, urldecode;
13+
use function array_intersect_key, array_key_exists, http_build_query, is_string, is_subclass_of, parse_str, preg_match, rtrim, str_contains, str_ends_with, strcasecmp, strlen, strtr, substr, trigger_error, urldecode;
1414

1515

1616
/**

src/Application/UI/ComponentReflection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Nette\Application\Attributes;
1111
use Nette\Utils\Reflection;
1212
use function array_fill_keys, array_filter, array_key_exists, array_merge, class_exists, end, preg_match_all, preg_quote, preg_split, strtolower;
13-
use const PREG_SPLIT_NO_EMPTY;
13+
use const PHP_VERSION_ID;
1414

1515

1616
/**

src/Bridges/ApplicationLatte/Nodes/SnippetAreaNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public static function create(Tag $tag, TemplateParser $parser): \Generator
3535
{
3636
$node = $tag->node = new static;
3737
$name = $tag->parser->parseUnquotedStringOrExpression();
38-
if (
38+
if ( // TODO?
3939
$name instanceof Expression\ClassConstantFetchNode
4040
&& $name->class instanceof Php\NameNode
4141
&& $name->name instanceof Php\IdentifierNode

src/Bridges/ApplicationLatte/Nodes/SnippetNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static function create(Tag $tag, TemplateParser $parser): \Generator
4848
$node->block = new Block(new Scalar\StringNode(''), Template::LayerSnippet, $tag);
4949
} else {
5050
$name = $tag->parser->parseUnquotedStringOrExpression();
51-
if (
51+
if ( // TODO?
5252
$name instanceof Expression\ClassConstantFetchNode
5353
&& $name->class instanceof Php\NameNode
5454
&& $name->name instanceof Php\IdentifierNode

0 commit comments

Comments
 (0)