Crummy\Phlack\Common\OptionsResolver::isLatest PHP Метод

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

Checks whether or not the OptionsResolver version is up-to-date.
private isLatest ( ) : boolean
Результат boolean
    private function isLatest()
    {
        if (null === $this->isLatestVersion) {
            $this->isLatestVersion = method_exists(current(class_parents($this)), 'setDefined');
        }
        return $this->isLatestVersion;
    }