PluginProbe
Simple Analytics / 1.95
Simple Analytics v1.95
1.109 1.108 1.107 1.106 1.73 1.74 1.75 1.76 1.77 1.78 1.79 1.8 1.80 1.81 1.82 1.83 1.84 1.85 1.86 1.87 1.88 1.89 1.9 1.90 1.91 All 98 releases
simpleanalytics / src / Settings / Concerns / HasPlaceholder.php

HasPlaceholder.php in Simple Analytics 1.95, at src/Settings/Concerns/HasPlaceholder.php

19 lines 284 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace SimpleAnalytics\Settings\Concerns;
4
5 trait HasPlaceholder
6 {
7 /**
8 * @var string|null
9 */
10 protected $placeholder;
11
12 public function placeholder(string $placeholder): self
13 {
14 $this->placeholder = $placeholder;
15
16 return $this;
17 }
18 }
19