I am trying to simply add a "dummy" class to get me started. Make sure I am actually doing it correct/ clearly something is wrong.
But the following below results in:
Fatal error: Class 'Dummy' not found in………..
Controller:
App::import('Dummy', 'Vendor', array('file' => 'dummy.php'));
public function index(){
$dummy = new Dummy();
}
Vendors / dummy.php
<?php
class Dummy{
}
Where I am going wrong?
Thanks,
Dave
No comments:
Post a Comment