You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php/** * Class Songs * This is a demo Model class. * * Please note: * Don't use the same name for class and method, as this might trigger an (unintended) __construct of the class. * This is really weird behaviour, but documented here: http://php.net/manual/en/language.oop5.decon.php * */namespaceMini\Model;
useMini\Core\Model;
useMvc\Libs\Helper;
class Song extends Model
The text was updated successfully, but these errors were encountered:
In application/Model/Song.php
it's missing
use Mvc\Libs\Helper;
Correct it this:
The text was updated successfully, but these errors were encountered: