3c66e56435
Namespaces have been introduced with the REST API, and should be generalized to the whole codebase to manage object scope and benefit from autoloading. See: - https://secure.php.net/manual/en/language.namespaces.php - http://www.php-fig.org/psr/psr-4/ Signed-off-by: VirtualTam <virtualtam@flibidi.net>
34 lines
741 B
PHP
34 lines
741 B
PHP
<?php
|
|
namespace Shaarli\Config;
|
|
|
|
/**
|
|
* Interface ConfigIO
|
|
*
|
|
* This describes how Config types should store their configuration.
|
|
*/
|
|
interface ConfigIO
|
|
{
|
|
/**
|
|
* Read configuration.
|
|
*
|
|
* @param string $filepath Config file absolute path.
|
|
*
|
|
* @return array All configuration in an array.
|
|
*/
|
|
public function read($filepath);
|
|
|
|
/**
|
|
* Write configuration.
|
|
*
|
|
* @param string $filepath Config file absolute path.
|
|
* @param array $conf All configuration in an array.
|
|
*/
|
|
public function write($filepath, $conf);
|
|
|
|
/**
|
|
* Get config file extension according to config type.
|
|
*
|
|
* @return string Config file extension.
|
|
*/
|
|
public function getExtension();
|
|
}
|