You are here

Template.php in Drupal 10

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

Namesort descending Description
Template