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\Type;
9:
10: /**
11: * Container for the various signal types sent by the lexers namespace.
12: */
13: class Lexers
14: {
15: /**
16: * Signal sent by the definitions importer that can be used in a GUI
17: * frontend to display the current actions performed by the importer.
18: * @see \Peg\Lib\Lexers\Base
19: * @see \Peg\Lib\Signals\Data\Lexers\Message
20: */
21: const LEXER_MESSAGE = "lexers_message";
22: }