| 1 | <?php |
||
| 17 | class MethodTests extends FieldTestCase |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @return bool |
||
| 21 | */ |
||
| 22 | public function methodTrue() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return bool |
||
| 29 | */ |
||
| 30 | public function methodFalse() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param number $arg1 |
||
| 37 | * @param number $arg2 |
||
| 38 | * |
||
| 39 | * @return number |
||
| 40 | */ |
||
| 41 | public function methodWithArgs($arg1, $arg2) |
||
| 45 | |||
| 46 | protected function privateMethod() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Test apply. |
||
| 52 | */ |
||
| 53 | public function testApply() |
||
| 88 | } |
||
| 89 |