@@ -74,7 +74,7 @@ private function compileAllAlternatives(): Node
7474 expr: new Node \Expr \Assign (
7575 var: new Node \Expr \Variable ('bucket ' ),
7676 expr: new Node \Expr \New_ (
77- new Node \Name \FullyQualified (' Kiboko\Component\Bucket\ComplexResultBucket ' )
77+ new Node \Name \FullyQualified (\ Kiboko \Component \Bucket \ComplexResultBucket::class )
7878 )
7979 )
8080 ),
@@ -126,7 +126,7 @@ class: new Node\Stmt\Class_(
126126 name: null ,
127127 subNodes: [
128128 'implements ' => [
129- new Node \Name \FullyQualified (name: ' Kiboko \\ Contract \\ Pipeline \\ TransformerInterface ' ),
129+ new Node \Name \FullyQualified (name: \ Kiboko \Contract \Pipeline \TransformerInterface::class ),
130130 ],
131131 'stmts ' => [
132132 new Node \Stmt \ClassMethod (
@@ -136,12 +136,12 @@ class: new Node\Stmt\Class_(
136136 'params ' => [
137137 new Node \Param (
138138 var: new Node \Expr \Variable ('client ' ),
139- type: new Node \Name \FullyQualified (name: ' Akeneo \\ Pim \\ ApiClient \\ AkeneoPimClientInterface ' ),
139+ type: new Node \Name \FullyQualified (name: \ Akeneo \Pim \ApiClient \AkeneoPimClientInterface::class ),
140140 flags: Node \Stmt \Class_::MODIFIER_PUBLIC ,
141141 ),
142142 new Node \Param (
143143 var: new Node \Expr \Variable ('logger ' ),
144- type: new Node \Name \FullyQualified (name: ' Psr \\ Log \\ LoggerInterface ' ),
144+ type: new Node \Name \FullyQualified (name: \ Psr \Log \LoggerInterface::class ),
145145 flags: Node \Stmt \Class_::MODIFIER_PUBLIC ,
146146 ),
147147 ],
@@ -170,7 +170,7 @@ class: new Node\Stmt\Class_(
170170 ),
171171 args: [
172172 new Node \Arg (value: $ this ->client ),
173- new Node \Arg (value: $ this ->logger ?? new Node \Expr \New_ (new Node \Name \FullyQualified (' Psr \\ Log \\ NullLogger ' ))),
173+ new Node \Arg (value: $ this ->logger ?? new Node \Expr \New_ (new Node \Name \FullyQualified (\ Psr \Log \NullLogger::class ))),
174174 ],
175175 );
176176 }
0 commit comments