<?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
*
*/
namespace Mini\Model;
use Mini\Core\Model;
use Mvc\Libs\Helper;
class Song extends Model
In application/Model/Song.php
it's missing
use Mvc\Libs\Helper;
Correct it this: