Krucas\LaravelUserEmailVerification\VerificationBrokerManager::get PHP Method

get() protected method

Attempt to get the broker from the local cache.
protected get ( string $name ) : Krucas\LaravelUserEmailVerification\Contracts\VerificationBroker
$name string
return Krucas\LaravelUserEmailVerification\Contracts\VerificationBroker
    protected function get($name)
    {
        return isset($this->brokers[$name]) ? $this->brokers[$name] : $this->resolve($name);
    }