File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/voku/SimplePhpParser/Model Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 */
You can’t perform that action at this time.
0 commit comments