Initial inheritance bits

This commit is contained in:
Dan Buch 2015-07-25 14:03:01 -04:00
parent 7e13f22a32
commit 06dbe9737b

View File

@ -0,0 +1,44 @@
<?php
class Pet {
public $name;
public $isRunning = false;
public function run()
{
$this->isRunning = true;
return $this->name . ' is running';
}
}
class Dog extends Pet {
protected $currentChaseTarget;
public function chase(Pet $chaseTarget)
{
$this->isRunning = true;
$this->currentChaseTarget = $chaseTarget;
$this->currentChaseTarget->run();
return $this->name . ' is chasing ' . $chaseTarget->name;
}
}
$cat = new Pet();
$cat->name = 'Felix';
var_dump($cat);
$cat->run();
var_dump($cat);
$dog = new Dog();
$dog->name = 'Fido';
var_dump($dog);
var_dump($dog->chase($cat));
var_dump($dog);
var_dump($cat);