Phpml\SupportVectorMachine\SupportVectorMachine::getOSExtension PHP Метод

getOSExtension() приватный Метод

private getOSExtension ( ) : string
Результат string
    private function getOSExtension()
    {
        $os = strtoupper(substr(PHP_OS, 0, 3));
        if ($os === 'WIN') {
            return '.exe';
        } elseif ($os === 'DAR') {
            return '-osx';
        }
        return '';
    }