for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of Fabrica.
*
* (c) Alexandre Salomé <[email protected]>
* (c) Julien DIDIER <[email protected]>
* This source file is subject to the GPL license that is bundled
* with this source code in the file LICENSE.
*/
namespace Fabrica\Component\Config;
* Stores values locally in an array.
* @author Alexandre Salomé <[email protected]>
class ArrayConfig extends AbstractConfig
{
* @var array
private $values;
public function __construct(array $values)
$this->values = $values;
}
* {@inheritDoc}
public function doGetAll()
return $this->values;
public function doSetAll(array $values)