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\Element;
9:
10: /**
11: * Represents a function or class method return type.
12: */
13: class ReturnType extends VariableType
14: {
15:
16: /**
17: * Reference to the overload owner.
18: * @var \Peg\Lib\Definitions\Element\Overload
19: */
20: public $overload;
21:
22: }