From a474fe2e242efc83635f5f18f5649cde6f7ff92b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 24 Mar 2011 09:02:09 +0100 Subject: [PATCH] [Yaml] tagged the guaranteed BC API --- Yaml.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Yaml.php b/Yaml.php index 20453f8a..99180ff8 100644 --- a/Yaml.php +++ b/Yaml.php @@ -15,6 +15,8 @@ * Yaml offers convenience methods to load and dump YAML. * * @author Fabien Potencier + * + * @api */ class Yaml { @@ -63,6 +65,8 @@ static public function getSpecVersion() * @return array The YAML converted to a PHP array * * @throws \InvalidArgumentException If the YAML is not valid + * + * @api */ public static function load($input) { @@ -106,6 +110,8 @@ public static function load($input) * @param integer $inline The level where you switch to inline YAML * * @return string A YAML string representing the original PHP array + * + * @api */ public static function dump($array, $inline = 2) {