add myCalendar into
[awl.git] / vendor / phpunit / phpunit-mock-objects / Tests / _files / Mockable.php
bloba4ccb243476b167c6b380cf66cf41e9e6ec18dba
1 <?php
2 class Mockable
4 public $constructorArgs;
5 public $cloned;
7 public function __construct($arg1 = NULL, $arg2 = NULL)
9 $this->constructorArgs = array($arg1, $arg2);
12 public function mockableMethod()
14 // something different from NULL
15 return TRUE;
18 public function anotherMockableMethod()
20 // something different from NULL
21 return TRUE;
24 public function __clone()
26 $this->cloned = TRUE;