Nope. Because the parser would have to first parse the class to find it's parents which of course would generate an error.
Best thing to do is to require_once the parent class in each of the derived classes.
require_once 'parent.class.php';
class child extends parent
And then you don't have to worry about it.