cded84ce03
Removed calculated getters
2019-11-16 15:21:08 +01:00
9e48bc1ff1
Removed fluent setters
2019-11-16 15:21:01 +01:00
eae66f92f5
Removed getter and setter methods
...
This change removes the separate getter and setter methods and is causing a lot of errors.
To fix errors you'll now need to use the actual field name.
Example:
OLD:
$reader->getTournament()->getRounds()[0]->getGames()[0]->getBlack()->getPlayer()->getName();
NEW:
$reader->Tournament->Rounds[0]->Games[0]->Black->Player->Name;
2019-11-15 17:17:09 +01:00
575b786079
Created function Round::getGamesbyBoard
2019-09-28 21:27:35 +02:00
5314bc47f2
Code style fixups
2019-09-28 21:10:52 +02:00
db9c205bd1
Class fields fixup
...
Beware of breaking change with own readers!!
AllFieldsAreNowPascalCased
2019-09-28 20:31:38 +02:00
2bffc0c293
Ordered use in classes
2019-09-28 10:33:59 +02:00
db989487a1
Updated docs
2019-06-20 15:03:37 +02:00
b0d194daca
Better PHPDoc generation. Also removed the models
2019-06-19 21:46:23 +02:00
11b07f07d0
Fixed getBye to return wonBye players
2019-06-04 15:35:21 +02:00
4f8e524c71
Added getAbsent and getBye functions to Round
2019-05-13 20:03:21 +02:00
7bfb68da55
Added pairings to round objects
2019-05-01 15:49:12 +02:00
1df8349b46
Updated code style
2019-04-25 15:39:21 +02:00
7bafdc6d5f
Updated phpdoc
2019-04-25 14:09:50 +02:00
b478d99d05
Added conversion of pairings into rounds
2019-02-11 22:41:44 +01:00
8c6e3b81fa
Fixed code style
2019-02-11 17:37:30 +01:00
82370b25d7
Added a reading of rounds
...
not finished yet
2019-02-06 17:23:37 +01:00