You are here

class Twig_TemplateMethodAndPropObject in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/twig/twig/test/Twig/Tests/TemplateTest.php \Twig_TemplateMethodAndPropObject

Hierarchy

Expanded class hierarchy of Twig_TemplateMethodAndPropObject

File

vendor/twig/twig/test/Twig/Tests/TemplateTest.php, line 636

View source
class Twig_TemplateMethodAndPropObject {
  private $a = 'a_prop';
  public function getA() {
    return 'a';
  }
  public $b = 'b_prop';
  public function getB() {
    return 'b';
  }
  private $c = 'c_prop';
  private function getC() {
    return 'c';
  }

}

Members