-
-
Save Palleas/271257 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Car | |
{ | |
protected $oilLevel; | |
protected function checkOilLevel() | |
{ | |
echo "oil level checked : "; | |
echo $this->oilLevel; | |
echo "\n"; | |
} | |
public function thisWorks() | |
{ | |
$car = new Car(); | |
$car->oilLevel = 'w00t!'; | |
$car->checkOilLevel(); | |
} | |
} | |
$car = new Car(); | |
$car->thisWorks(); // prints "oil level checked and oil level" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment