Can I extend a PHP class from two classes, one of which is abstract and other one is not? like:
class customer extends SomeControllerClass implements SomeAbstractClass {
...
}
the reason to do is that I have my commonly used functions and logic in the abstract class.