# user-access-manager/2.3.1/src/Form/LabelTrait.php

User Access Manager, version 2.3.1. 16 lines.

- Page: https://pluginprobe.com/plugins/user-access-manager/2.3.1/code/src/Form/LabelTrait.php
- Raw: https://pluginprobe.com/plugins/user-access-manager/2.3.1/raw/src/Form/LabelTrait.php
- Modified: 2025-12-09T13:30:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/user-access-manager/2.3.1/code/src/Form/LabelTrait.php#L10-L20`.

```php
<?php

declare(strict_types=1);

namespace UserAccessManager\Form;

trait LabelTrait
{
    protected ?string $label;

    public function getLabel(): ?string
    {
        return $this->label;
    }
}

```
