LeagueWrap\Api\Summoner::get PHP Method

get() public method

Attempt to get a summoner by key.
public get ( string $key ) : object | null
$key string
return object | null
    public function get($key)
    {
        $key = strtolower($key);
        if (isset($this->summoners[$key])) {
            return $this->summoners[$key];
        }
        return null;
    }