Hello guys, I'm wondering if is it possible to access a value that is indexed by a number as an atrrib
Following this: https://docs.phalcon.io/vi/3.2/volt#variables
{{ post.title }} {# for $post->title #}
{{ post['title'] }} {# for $post['title'] #}
In my case, "title" is an integer! and is not an array, so I can't do {{ some['42'] }}
Thanks!