page_tester-1.0.x-dev/src/Annotation/Tests.php
src/Annotation/Tests.php
<?php
declare(strict_types=1);
namespace Drupal\page_tester\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines tests annotation object.
*
* @Annotation
*/
final class Tests extends Plugin {
/**
* The plugin ID.
*/
public readonly string $id;
/**
* The human-readable name of the plugin.
*
* @ingroup plugin_translatable
*/
public readonly string $title;
/**
* The description of the plugin.
*
* @ingroup plugin_translatable
*/
public readonly string $description;
}
