JonathanTorres\Construct\Helpers\Travis::toMinorVersion PHP Méthode

toMinorVersion() private méthode

Returns the minor version of the given version.
private toMinorVersion ( string $version ) : string
$version string
Résultat string
    private function toMinorVersion($version)
    {
        list($major, $minor) = explode('.', $version);
        return $major . '.' . $minor;
    }