Is this a valid class definition?
class McBase {
// 06-14-04 - I may or may not later add something here. This will
// be the top of the PDS content management system hierarchy. I'm
// leaving it blank for now but want it here for future flexibility.
}
I use it later on this line:
class McBasic extends McBase {
but I get this error:
Fatal error: Class mcbasic: Cannot inherit from undefined class mcbase
in /usr/local/www/vhosts/publicpen.com/htdocs/designer/ppKernel/McBasic.php
on line 5
class McBase {
// 06-14-04 - I may or may not later add something here. This will
// be the top of the PDS content management system hierarchy. I'm
// leaving it blank for now but want it here for future flexibility.
}
I use it later on this line:
class McBasic extends McBase {
but I get this error:
Fatal error: Class mcbasic: Cannot inherit from undefined class mcbase
in /usr/local/www/vhosts/publicpen.com/htdocs/designer/ppKernel/McBasic.php
on line 5
Comment