Skip to content

Instantly share code, notes, and snippets.

@guillaumebdx
Created September 3, 2019 14:42
Show Gist options
  • Save guillaumebdx/b76e0c645b81caa4925859a817cbde06 to your computer and use it in GitHub Desktop.
Save guillaumebdx/b76e0c645b81caa4925859a817cbde06 to your computer and use it in GitHub Desktop.
//...
public function forward()
{
$this->currentSpeed = 15;
$this->echoStatus("Go !");
}
public function brake()
{
while ($this->currentSpeed > 0) {
$this->currentSpeed--;
$this->echoStatus("Brake !!!");
}
$this->echoStatus("I'm stopped");
}
public function echoStatus($status)
{
echo $status;
}
//...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment