| 1 | <?php |
||
| 19 | class AnyValueToken implements TokenInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Always scores 3 for any argument. |
||
| 23 | * |
||
| 24 | * @param $argument |
||
| 25 | * |
||
| 26 | * @return int |
||
| 27 | */ |
||
| 28 | public function scoreArgument($argument) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Returns false. |
||
| 35 | * |
||
| 36 | * @return bool |
||
| 37 | */ |
||
| 38 | public function isLast() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Returns string representation for token. |
||
| 45 | * |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | public function __toString() |
||
| 52 | } |
||
| 53 |