setYamlEncoder($yamlEncoder); } else { if (function_exists('yaml_emit')) { $this->setYamlEncoder('yaml_emit'); } } } /** * Get callback for decoding YAML * * @return callable */ public function getYamlEncoder() { return $this->yamlEncoder; } /** * Set callback for decoding YAML * * @param callable $yamlEncoder the decoder to set * @return Yaml * @throws Exception\InvalidArgumentException */ public function setYamlEncoder($yamlEncoder) { if (!is_callable($yamlEncoder)) { throw new Exception\InvalidArgumentException('Invalid parameter to setYamlEncoder() - must be callable'); } $this->yamlEncoder = $yamlEncoder; return $this; } /** * processConfig(): defined by AbstractWriter. * * @param array $config * @return string * @throws Exception\RuntimeException */ public function processConfig(array $config) { if (null === $this->getYamlEncoder()) { throw new Exception\RuntimeException("You didn't specify a Yaml callback encoder"); } $config = call_user_func($this->getYamlEncoder(), $config); if (null === $config) { throw new Exception\RuntimeException("Error generating YAML data"); } return $config; } }