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 BlackNA
13: * @see pgn_standard.txt
14: * @author Geraldo
15: */
16: class BlackNA extends WhiteNA {
17:
18: /**
19: * @assert() === 'BlackNA'
20: * @return string class name
21: */
22: public function getName() {
23: $parsed = Parser::parseClassName(get_class());
24: return $parsed['className'];
25: }
26:
27: }
28: