public function ClientEntity::setName in Simple OAuth (OAuth2) & OpenID Connect 5.x
Same name and namespace in other branches
- 8.4 src/Entities/ClientEntity.php \Drupal\simple_oauth\Entities\ClientEntity::setName()
- 8.2 src/Entities/ClientEntity.php \Drupal\simple_oauth\Entities\ClientEntity::setName()
- 8.3 src/Entities/ClientEntity.php \Drupal\simple_oauth\Entities\ClientEntity::setName()
Set the name of the client.
Parameters
string $name: The name to set.
Overrides ClientEntityInterface::setName
1 call to ClientEntity::setName()
- ClientEntity::__construct in src/
Entities/ ClientEntity.php - ClientEntity constructor.
File
- src/
Entities/ ClientEntity.php, line 36
Class
Namespace
Drupal\simple_oauth\EntitiesCode
public function setName($name) {
$this->name = $name;
}