File tree 1 file changed +10
-8
lines changed
1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -248,20 +248,22 @@ protected function indexControlStructure(
248
248
return preg_replace_callback (
249
249
'/\{%\s*(?<structure> ' . $ this ->getControlStructureRegEx ($ structure , $ additionalComponents ) . ')/i ' ,
250
250
function (array $ matches ) use (&$ structureDepthCounter , &$ levelCounter , $ additionalComponents ): string {
251
- $ index = sprintf ('%s-%s-%s- ' , $ matches [0 ]);
252
-
253
251
if (in_array ($ matches ['structure ' ], $ additionalComponents )) {
254
- return sprintf ($ index , $ levelCounter [$ structureDepthCounter - 1 ], ($ structureDepthCounter - 1 ));
255
- }
256
-
257
- if (!isset ($ levelCounter [$ structureDepthCounter ])) {
258
- $ levelCounter [$ structureDepthCounter ] = 0 ;
252
+ return sprintf (
253
+ '%s-%s-%s- ' ,
254
+ $ matches [0 ],
255
+ $ levelCounter [$ structureDepthCounter - 1 ],
256
+ ($ structureDepthCounter - 1 )
257
+ );
259
258
}
260
259
260
+ $ levelCounter [$ structureDepthCounter ] = $ levelCounter [$ structureDepthCounter ] ?? 0 ;
261
261
$ isEndTag = strpos ($ matches ['structure ' ], 'end ' ) === 0 ;
262
262
($ isEndTag ) ? --$ structureDepthCounter : $ levelCounter [$ structureDepthCounter ]++;
263
+
263
264
return sprintf (
264
- $ index ,
265
+ '%s-%s-%s- ' ,
266
+ $ matches [0 ],
265
267
$ levelCounter [$ structureDepthCounter ],
266
268
($ isEndTag ? $ structureDepthCounter : $ structureDepthCounter ++)
267
269
);
You can’t perform that action at this time.
0 commit comments