Template.php in Drupal 9
Same filename and directory in other branches
File
core/tests/Drupal/Tests/Component/Annotation/Doctrine/Fixtures/Annotation/Template.phpView 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;
}
}