Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* @see https://github.com/zendframework/zend-config for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license https://github.com/zendframework/zend-config/blob/master/LICENSE.md New BSD License
|
|
*/
|
|
|
|
namespace Zend\Config\Processor;
|
|
|
|
use Zend\Config\Config;
|
|
use Zend\Config\Exception;
|
|
use Zend\Stdlib\PriorityQueue;
|
|
|
|
class Queue extends PriorityQueue implements ProcessorInterface
|
|
{
|
|
/**
|
|
* Process the whole config structure with each parser in the queue.
|
|
*
|
|
* @param Config $config
|
|
* @return Config
|
|
* @throws Exception\InvalidArgumentException
|
|
*/
|
|
public function process(Config $config)
|
|
{
|
|
if ($config->isReadOnly()) {
|
|
throw new Exception\InvalidArgumentException('Cannot process config because it is read-only');
|
|
}
|
|
|
|
foreach ($this as $parser) {
|
|
/** @var $parser ProcessorInterface */
|
|
$parser->process($config);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Process a single value
|
|
*
|
|
* @param mixed $value
|
|
* @return mixed
|
|
*/
|
|
public function processValue($value)
|
|
{
|
|
foreach ($this as $parser) {
|
|
/** @var $parser ProcessorInterface */
|
|
$value = $parser->processValue($value);
|
|
}
|
|
|
|
return $value;
|
|
}
|
|
}
|