1: <?php
2: /*
3: * Copyright (c) 2016 Geraldo B. Landre
4: *
5: * See the file LICENSE for copying permission.
6: */
7: namespace pgn\tags;
8:
9: use utils\Parser;
10:
11: /**
12: * Description of Annotator:
13: * This tag uses a name or names in the format of the player name tags; this
14: * identifies the annotator or annotators of the game.
15: * @see pgn_standard.txt
16: * @author Geraldo
17: */
18: class Annotator extends White {
19:
20: public function getName() {
21: $parsed = Parser::parseClassName(get_class());
22: return $parsed['className'];
23: }
24:
25: }
26: