mirror of
https://github.com/kennethreitz-archive/wp-mustache.git
synced 2026-06-05 23:50:19 +00:00
12 lines
197 B
PHP
12 lines
197 B
PHP
<?php
|
|
|
|
class Simple extends Mustache {
|
|
public $name = "Chris";
|
|
public $value = 10000;
|
|
|
|
public function taxed_value() {
|
|
return $this->value - ($this->value * 0.4);
|
|
}
|
|
|
|
public $in_ca = true;
|
|
}; |