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.
No. But there are traits in PHP 5.4 that you can use for that.