In the file /controllers/AddController.php connected through the use class from another file.
<? use Models\categoryBild; $category = new categoryBild; class AddController{ public function actionView(){ $category = new categoryBild; } } Sam connected file models/category.php .
<? namespace Models; class categoryBild{ public function category(){ $category = array('men','woman', 'el_acs'); return $category; } } But the class does not connect, Uncaught Error: Class 'Models\categoryBild' not found in
What's wrong?