HasNamespace.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Give\Vendors\StellarWP\AdminNotices\Traits; |
| 6 | |
| 7 | trait HasNamespace |
| 8 | { |
| 9 | /** |
| 10 | * The namespace for the plugin. |
| 11 | * |
| 12 | * @var string |
| 13 | */ |
| 14 | protected $namespace; |
| 15 | |
| 16 | public function __construct(string $namespace) |
| 17 | { |
| 18 | $this->namespace = $namespace; |
| 19 | } |
| 20 | } |
| 21 |