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

Simple Analytics, version 1.110. 19 lines.

- Page: https://pluginprobe.com/plugins/simpleanalytics/1.110/code/src/Settings/Concerns/HasPlaceholder.php
- Raw: https://pluginprobe.com/plugins/simpleanalytics/1.110/raw/src/Settings/Concerns/HasPlaceholder.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/HasPlaceholder.php#L10-L20`.

```php
<?php

namespace SimpleAnalytics\Settings\Concerns;

trait HasPlaceholder
{
    /**
     * @var string|null
     */
    protected $placeholder;

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

        return $this;
    }
}

```
