22 lines
412 B
PHP
Executable File
22 lines
412 B
PHP
Executable File
<?php
|
|
|
|
namespace Kirby\Toolkit;
|
|
|
|
/**
|
|
* This is the core class to handle
|
|
* configuration values/constants.
|
|
*
|
|
* @package Kirby Toolkit
|
|
* @author Bastian Allgeier <bastian@getkirby.com>
|
|
* @link https://getkirby.com
|
|
* @copyright Bastian Allgeier GmbH
|
|
* @license https://opensource.org/licenses/MIT
|
|
*/
|
|
class Config extends Silo
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
public static $data = [];
|
|
}
|