public function TwigResource::getContent

Returns the content of the resource.

Return value

string The content

Overrides ResourceInterface::getContent

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigResource.php, line 32

Class

TwigResource
A Twig template resource.

Namespace

Assetic\Extension\Twig

Code

public function getContent() {
  try {
    return $this->loader
      ->getSource($this->name);
  } catch (\Twig_Error_Loader $e) {
    return '';
  }
}