Merge pull request #223 from Jeloo/bridge_vehicle_fix

Make the method abstract on the Bridhe pattern
This commit is contained in:
Dominik Liebler 2016-09-21 14:48:30 +02:00 committed by GitHub
commit c6ee057b4b

View File

@ -16,7 +16,5 @@ abstract class Vehicle
$this->workShop2 = $workShop2;
}
public function manufacture()
{
}
abstract public function manufacture();
}