Example
has-settings.php
use Meteorack\SDK\Traits\HasSettings;
class My_Module implements ModuleInterface {
use HasSettings;
public function boot(): void {
$value = $this->settings->get('my_key');
}
}use Meteorack\SDK\Traits\HasSettings;
class My_Module implements ModuleInterface {
use HasSettings;
public function boot(): void {
$value = $this->settings->get('my_key');
}
}