LeagueWrap\Api\AbstractApi::selectVersion PHP Method

selectVersion() public method

Select the version of the api you wish to query.
public selectVersion ( string $version ) : boolean | $this
$version string
return boolean | $this
    public function selectVersion($version)
    {
        if (!in_array($version, $this->versions)) {
            // not a value version
            return false;
        }
        $this->version = $version;
        return $this;
    }