12 lines
138 B
PHP
12 lines
138 B
PHP
<?php
|
|
|
|
namespace League\CLImate\Settings;
|
|
|
|
interface SettingsInterface
|
|
{
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function add();
|
|
}
|