1: <?php
2:
3: class SimpleView extends Azalea\Selenium\Core\View
4: {
5: protected static $hash = "patients";
6: protected static $selector = "#patient";
7:
8: public function getViewSelector($args = array())
9: {
10: return $this->getSelector($args);
11: }
12: }
13:
14: ?>