| 1 | <?php |
||
| 10 | class Dumper |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Returns the components of a Version instance. |
||
| 14 | * |
||
| 15 | * @param Version $version A version. |
||
| 16 | * |
||
| 17 | * @return array The components. |
||
| 18 | */ |
||
| 19 | public static function toComponents(Version $version) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Returns the string representation of a Version instance. |
||
| 32 | * |
||
| 33 | * @param Version $version A version. |
||
| 34 | * |
||
| 35 | * @return string The string representation. |
||
| 36 | */ |
||
| 37 | public static function toString(Version $version) |
||
| 52 | } |
||
| 53 |