Hello, as now we have typed properties in PHP 7.4 what is best practice how to deal with boolean values in the Phalcon 4 models (DB behind is MySQL)? Problem that DB keeps them as shortint(1) but I can't keep properties boolean as I need convert type and set them back in afterFetch/beforeSave so I still use
/*@var $bar int|bool */
public $bar;
instead of
public bool $bar;