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