# simpleanalytics/1.110/src/Settings/Concerns/HasDocs.php

Simple Analytics, version 1.110. 31 lines.

- Page: https://pluginprobe.com/plugins/simpleanalytics/1.110/code/src/Settings/Concerns/HasDocs.php
- Raw: https://pluginprobe.com/plugins/simpleanalytics/1.110/raw/src/Settings/Concerns/HasDocs.php
- Modified: 2024-09-13T11:41:00+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/simpleanalytics/1.110/code/src/Settings/Concerns/HasDocs.php#L10-L20`.

```php
<?php

namespace SimpleAnalytics\Settings\Concerns;

trait HasDocs
{
    /**
     * @var string|null
     */
    protected $description;

    /**
     * @var string|null
     */
    protected $docs;

    public function description(string $description): self
    {
        $this->description = $description;

        return $this;
    }

    public function docs(string $docs): self
    {
        $this->docs = $docs;

        return $this;
    }
}

```
