Can I still use static function in PHP7+Phalcon3 ? (This worked fine in PHP5+Phalcon2)
For example, I would like to have /libraries/Test.php file with static functions.
Test.php Class: class Test {
function foobar() { echo 'Test'; }
}
Then simply call it like this in controller or model;
use MyApp\Libraries\Test;
Test::foobar();