Skip to content

Instantly share code, notes, and snippets.

@eriktorsner
Created May 24, 2017 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eriktorsner/8c961bfec0d08088ba0337d19077a201 to your computer and use it in GitHub Desktop.
Save eriktorsner/8c961bfec0d08088ba0337d19077a201 to your computer and use it in GitHub Desktop.
<?php
class Driver
{
private $car;
public function __construct($car)
{
$this->car = $car;
}
public function Drive()
{
if ($this->car instanceof ElectricCar) {
$this->car->unplug();
}
$this->car->start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment