1 | <?php |
||
13 | final class Versions |
||
14 | { |
||
15 | const ROOT_PACKAGE_NAME = FallbackVersions::ROOT_PACKAGE_NAME; |
||
16 | const VERSIONS = []; |
||
17 | |||
18 | private function __construct() |
||
21 | |||
22 | /** |
||
23 | * @throws \OutOfBoundsException if a version cannot be located |
||
24 | * @throws \UnexpectedValueException if the composer.lock file could not be located |
||
25 | */ |
||
26 | public static function getVersion(string $packageName) : string |
||
30 | } |
||
31 |