File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -467,8 +467,7 @@ private function calculateStatistics(): void
467
467
private function processClasses(\PHP_Token_Stream $tokens): void
468
468
{
469
469
$classes = $tokens->getClasses();
470
-
471
- $link = $this->getId() . '.html#';
470
+ $link = $this->getId() . '.html#';
472
471
473
472
foreach ($classes as $className => $class) {
474
473
if (\strpos($className, 'anonymous') === 0) {
@@ -512,8 +511,7 @@ private function processClasses(\PHP_Token_Stream $tokens): void
512
511
private function processTraits(\PHP_Token_Stream $tokens): void
513
512
{
514
513
$traits = $tokens->getTraits();
515
-
516
- $link = $this->getId() . '.html#';
514
+ $link = $this->getId() . '.html#';
517
515
518
516
foreach ($traits as $traitName => $trait) {
519
517
$this->traits[$traitName] = [
@@ -549,8 +547,7 @@ private function processTraits(\PHP_Token_Stream $tokens): void
549
547
private function processFunctions(\PHP_Token_Stream $tokens): void
550
548
{
551
549
$functions = $tokens->getFunctions();
552
-
553
- $link = $this->getId() . '.html#';
550
+ $link = $this->getId() . '.html#';
554
551
555
552
foreach ($functions as $functionName => $function) {
556
553
if (\strpos($functionName, 'anonymous') === 0) {
You can’t perform that action at this time.
0 commit comments