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