13 lines
198 B
PHP
13 lines
198 B
PHP
<?php
|
|
|
|
namespace Tests\Support;
|
|
|
|
trait InteractsWithSettings
|
|
{
|
|
protected Settings $settings;
|
|
|
|
public function setUpSettings()
|
|
{
|
|
$this->settings = Settings::initialize();
|
|
}
|
|
}
|