Template.php

Namespace

Drupal\Tests\Component\Annotation\Doctrine\Fixtures\Annotation

File

core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/Annotation/Template.php

View source
<?php

namespace Drupal\Tests\Component\Annotation\Doctrine\Fixtures\Annotation;

/** @Annotation */
class Template {
  private $name;
  public function __construct(array $values) {
    $this->name = isset($values['value']) ? $values['value'] : null;
  }

}

Classes

Title Deprecated Summary
Template

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.