Ejemplo n.º 1
0
 /**
  * Renders a PHP array to YAML format.
  *
  * @param array $vars
  * @param array $options Supported options:
  * - inline: The level where you switch to inline YAML.
  * - exceptionOnInvalidType: if an exception must be thrown on invalid types.
  * - objectSupport: if object support is enabled.
  * @static 
  */
 public static function render($vars = array(), $options = array())
 {
     return \October\Rain\Parse\Yaml::render($vars, $options);
 }