You are here

protected function Identifier::getCamelCase in Markdown 8.2

Retrieves the camel case variation of the identifier.

Return value

string The camel case variation of the identifier.

File

src/Annotation/Identifier.php, line 155

Class

Identifier
Creates an identifier for use in annotation objects.

Namespace

Drupal\markdown\Annotation

Code

protected function getCamelCase() {
  if (!isset($this->camelCase)) {
    $this->camelCase = static::converter()
      ->denormalize($this
      ->getSnakeCase());
  }
  return $this->camelCase;
}