root / trunk / docscripts / inc / DojoVariable.php

Revision 6039, 197 bytes (checked in by pottedmeat, 2 years ago)

New tests/benchmarks and refactoring

Line 
1<?php
2
3class DojoVariable
4{
5  private $value = '';
6 
7  public function __construct($value)
8  {
9    $this->value = $value;
10  }
11 
12  public function getValue()
13  {
14    return $this->value;
15  }
16}
17
18?>
Note: See TracBrowser for help on using the browser.