You are here

public function AppCredentialControllerBase::load in Apigee Edge 8

File

src/Entity/Controller/AppCredentialControllerBase.php, line 213

Class

AppCredentialControllerBase
Base class for developer- and company app credential controller services.

Namespace

Drupal\apigee_edge\Entity\Controller

Code

public function load(string $consumer_key) : AppCredentialInterface {

  // TODO Get this from app cache if available.
  return $this
    ->decorated()
    ->load($consumer_key);
}