vote up 0 vote down star

Hi

What may be the problem if i get the following error.

while i am extending a class i got this error

example:

class ModuleUser extends AbstractModule

Fatal error: Class AbstractModule not found in (....PATH) ?

I have done most of the possibilities... But i can't resolve the problem.

any help will be thankful

thanks n advance

Fero

flag

53% accept rate

1 Answer

vote up 1 vote down check

Prior to your definition of ModuleUser, import the file that contains the definition for AbstractModule.

require_once 'path/to/abstract_module.php';

If both classes are in the same file, then make sure you define the class ModuleUser after you define AbstractModule.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.