1: <?php
2: /**
3: * @author Jefferson González
4: * @license MIT
5: * @link http://github.com/peg-org/peg-src Source code.
6: */
7:
8: namespace Peg\Lib\Definitions;
9:
10: /**
11: * The different types of cached definitions that can be imported/exported.
12: * @see \Peg\Lib\Definitions\Importer
13: * @see \Peg\Lib\Definitions\Exporter
14: */
15: class Type
16: {
17: const JSON = "json";
18: const PHP = "php";
19: }