| 1 | <?php |
||
| 6 | class ToBeOneOf |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * Checks that `$expected` has value of `$actual` ( identic ). |
||
| 10 | * |
||
| 11 | * @param mixed $actual The actual value. |
||
| 12 | * @param mixed $expected The expected value. |
||
| 13 | * @return boolean |
||
| 14 | */ |
||
| 15 | public static function match($actual, $expected) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Returns the description message. |
||
| 30 | * |
||
| 31 | * @return string The description message. |
||
| 32 | */ |
||
| 33 | public static function description() |
||
| 37 | } |
||
| 38 |