I used the code sample on the document:
https://docs.phalcon.io/en/latest/reference/models-metadata.html#manual-metadata
The page is blank, no any error message.
Example tested? has a problem?
use Phalcon\Mvc\Model;
class Mymodel extends Model
{
public function metaData()
{
return MetaData::MODELS_ATTRIBUTES => [
"id",
"title",
"addtime",
]
]
}
}