[BUG] Bad generation of code in arrays

for( $i=0; $i<count($ticket); $i++ ){
		$valor = json_decode($ticket[$i]);
		echo $valor->{0};
		echo " ";
		echo $valor->{1};	
		

Generated code.

 for( $i=0; $i<count($ticket); $i++ ){ 
          
         $valor = json_decode($ticket[$i]); 

         echo $valor->{0}; 
         echo " "; 
         echo $valor->$1 ;   // <----------- ?....?
 

Give an unexpected $ on execution.

Hello,

Issue reported to our bugs team.

regards,
Bernhard Bernsmann

Hello,

We need more information about your problem. Make a better description so that we can review it and also, if possible, send us an application exported to CREATE the tables involved so that we can simulate as soon as possible.