no-framework-tutorial/implementation/15-adding-content/src/Factory/SettingsProvider.php

10 lines
181 B
PHP

<?php declare(strict_types=1);
namespace Lubian\NoFramework\Factory;
use Lubian\NoFramework\Settings;
interface SettingsProvider
{
public function getSettings(): Settings;
}