Skip to content

Commit 181ea90

Browse files
authored
Merge pull request #43 from voku/analysis-O3BxNL
Apply fixes from StyleCI
2 parents 8f86835 + d161939 commit 181ea90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/voku/SimplePhpParser/Model/PHPClass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function readObjectFromPhpNode($node, $dummy = null): self
6868
if (!empty($node->extends)) {
6969
$classExtended = '';
7070
foreach ($node->extends->parts as $part) {
71-
$classExtended .= "\\" . $part;
71+
$classExtended .= '\\' . $part;
7272
}
7373
/** @noinspection PhpSillyAssignmentInspection - hack for phpstan */
7474
/** @var class-string $classExtended */
@@ -109,7 +109,7 @@ public function readObjectFromPhpNode($node, $dummy = null): self
109109
foreach ($node->implements as $interfaceObject) {
110110
$interfaceFQN = '';
111111
foreach ($interfaceObject->parts as $interface) {
112-
$interfaceFQN .= "\\" . $interface;
112+
$interfaceFQN .= '\\' . $interface;
113113
}
114114
$interfaceFQN = \ltrim($interfaceFQN, '\\');
115115
/** @noinspection PhpSillyAssignmentInspection - hack for phpstan */

0 commit comments

Comments
 (0)