Consider the following class hierarchy:
Abstract class Printer{
public print(){
//code to handle printing
}
}
class LaserPrinter extends Printer{
private $file;
public setFile($file){
$this->file = $file;
}
}
class InkJetPrinter extends Printer{
private $document;
public setDocument($document){
$this->document= $document;
}
}
class ClientClass{
private $filesToPrint=array();
public __construct(InkJetPrinter $inkJetPrinter, LaserPrinter $laserPrinter){ //I was hoping to apply Dependency Inversion here by defining both inputs as type Printer instead
//constructor stuff
}
public function startPrinting(){
//some logic to extract the $files and $documents from $this->filesToPrint
//...
$this->inkJetPrinter->setDocument($document);//<---Things got messy here
$this->laserPrinter->setFile($file);//<---and here too
//...
}
}
Now the class LaserPrinter can't be replaced by its parent Printer because Printer doesn't have setFile method.
Does that mean that his hierarchy breaks the Liskov substitution principle? Are subclasses not allowed to have their own public methods?