Refactoring to composition transform the superclass into an object of its own, which becomes the collaborator of the class under refactoring. Instead of inheriting every public method, the object will just expose the strictly needed methods.
This refactoring is one of the most underused in the PHP world. Don't be afraid to try out composition when you see duplicated code.