1: <?php
2:
3: /*
4: * Copyright (c) 2016 Geraldo B. Landre
5: *
6: * See the file LICENSE for copying permission.
7: */
8:
9: namespace pgn\tags;
10:
11: use utils\Parser;
12:
13: /**
14: * Description of NIC:
15: *
16: * This uses a string; this is used for an opening designation from the _New in
17: * Chess_ database.
18: *
19: * @see pgn_standard.txt
20: * @author Geraldo
21: */
22: class NIC extends Tag {
23:
24: public function getName() {
25: $parsed = Parser::parseClassName(get_class());
26: return $parsed['className'];
27: }
28:
29: }
30: