Doc on private function

This commit is contained in:
Leonel Quinteros 2013-02-24 13:23:35 -03:00
parent 36071214c9
commit 502940e5f7

View File

@ -90,8 +90,16 @@ class Toml
}
/**
* Parses TOML value and returns it to be assigned on the hashed array
*
* @param (string) $val
*
* @return (mixed) Parsed value.
*/
private static function parseValue($val)
{
// TODO: Implement this.
return $val;
}
}