1: <?php
2: /*
3: You may not change or alter any portion of this comment or credits
4: of supporting developers from this source code or any supporting source code
5: which is considered copyrighted (c) material of the original comment or credit authors.
6:
7: This program is distributed in the hope that it will be useful,
8: but WITHOUT ANY WARRANTY; without even the implied warranty of
9: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10: */
11:
12: namespace Xmf;
13:
14: /**
15: * Yaml dump and parse methods
16: *
17: * YAML is a serialization format most useful when human readability
18: * is a consideration. It can be useful for configuration files, as
19: * well as import and export functions.
20: *
21: * This file is a front end for a separate YAML package present in the
22: * vendor directory. The intent is to provide a consistent interface
23: * no mater what underlying library is actually used.
24: *
25: * At present, this class expects the symfony/yaml package.
26: *
27: * @category Xmf\Module\Yaml
28: * @package Xmf
29: * @author Richard Griffith <richard@geekwright.com>
30: * @copyright 2013-2014 XOOPS Project (http://xoops.org)
31: * @license GNU GPL 2 or later (http://www.gnu.org/licenses/gpl-2.0.html)
32: * @version Release: 1.0
33: * @link http://xoops.org
34: * @see http://www.yaml.org/
35: * @since 1.0
36: */
37: class Yaml extends \Xoops\Core\Yaml
38: {
39: // This class has been superceded by Xoops\Core\Yaml.
40: // This stub remains for compatibility with Xmf for Xoops 2.5 series.
41: }
42: