Simple.php 206 B

1234567891011121314
  1. <?php
  2. class Simple
  3. {
  4. public $name = "Chris";
  5. public $value = 10000;
  6. public function taxed_value()
  7. {
  8. return $this->value - ($this->value * 0.4);
  9. }
  10. public $in_ca = true;
  11. };