Skip to content

Commit 17b1eaf

Browse files
removes commented code
1 parent 593d8c4 commit 17b1eaf

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

.php-cs-fixer.dist.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
$finder = PhpCsFixer\Finder::create()
44
->in(__DIR__)
55
->exclude('vendor/')
6-
->notPath('tests/E2E/_fixtures/parse_error/Services/CartService.php')
7-
->notPath('tests/E2E/_fixtures/is_something/MyEnum.php');
8-
6+
->notPath('tests/E2E/_fixtures/parse_error/Services/CartService.php');
97

108
return (new PhpCsFixer\Config())
119
->setFinder($finder)

src/Analyzer/FileVisitor.php

-12
Original file line numberDiff line numberDiff line change
@@ -224,18 +224,6 @@ public function enterNode(Node $node): void
224224
->addDependency(new ClassDependency($returnType->toString(), $returnType->getLine()));
225225
}
226226
}
227-
228-
/* if ($node instanceof Node\Attribute) {
229-
$nodeName = $node->name;
230-
231-
dump(sprintf("%s %s", $node->name, __LINE__));
232-
233-
234-
if ($nodeName instanceof Node\Name\FullyQualified) {
235-
$this->classDescriptionBuilder
236-
->addDependency(new ClassDependency(implode('\\', $nodeName->getParts()), $node->getLine()));
237-
}
238-
}*/
239227
}
240228

241229
public function getClassDescriptions(): array

0 commit comments

Comments
 (0)