setFilter($filter); } /** * @param ZendFilter $filter * @return Filter */ public function setFilter(ZendFilter $filter) { $this->filter = $filter; return $this; } /** * @return ZendFilter */ public function getFilter() { return $this->filter; } /** * Process * * @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'); } /** * Walk through config and replace values */ foreach ($config as $key => $val) { if ($val instanceof Config) { $this->process($val); } else { $config->$key = $this->filter->filter($val); } } return $config; } /** * Process a single value * * @param mixed $value * @return mixed */ public function processValue($value) { return $this->filter->filter($value); } }