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\Signals\Data\Lexers;
9:
10: /**
11: * Object sent by the LEXER_MESSAGE signal.
12: */
13: class Message extends \Peg\Lib\Signals\SignalData
14: {
15: /**
16: * A message representing current task been performed by the lexer.
17: * @var string
18: */
19: public $message;
20:
21: public function __construct()
22: {
23: parent::__construct();
24: }
25: }