$tags Tags can be used to group routes inside a scope * for easier implementation and reviewing of the API specification. * It defaults to the controller name in snake_case (should be `a-z` and underscore only). * @since 28.0.0 */ public function __construct( protected string $scope = self::SCOPE_DEFAULT, protected ?array $tags = null, ) { } /** * @since 28.0.0 */ public function getScope(): string { return $this->scope; } /** * @return ?list * @since 28.0.0 */ public function getTags(): ?array { return $this->tags; } }