
| Current Path : /var/www/html/vendor/consolidation/config/src/Util/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/vendor/consolidation/config/src/Util/ConfigRuntimeInterface.php |
<?php
namespace Consolidation\Config\Util;
/**
* ConfigRuntimeInterface provides a method that returns those elements
* of the configuration that were set at runtime, e.g. via commandline
* options rather than being loaded from a file.
*/
interface ConfigRuntimeInterface
{
/**
* runtimeConfig returns those elements of the configuration not
* loaded from a file.
*
* @return \Consolidation\Config\ConfigInterface
*/
public function runtimeConfig();
}