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
db9c205bd1
Class fields fixup
...
Beware of breaking change with own readers!!
AllFieldsAreNowPascalCased
2019-09-28 20:31:38 +02:00
1fbd910ffb
Added board property to Pairing and Game
...
Added table-property to Pairing:::Class
Added phpdoc blocks
Renamed table to board
2019-09-28 20:18:29 +02:00
2bffc0c293
Ordered use in classes
2019-09-28 10:33:59 +02:00
ae641ade2b
Updated docs
2019-06-20 23:54:50 +02:00
eba9d5788d
Better description of Game::getResult
2019-06-20 23:47:36 +02:00
2b9337535b
Fixed fatal error
...
Cannot access parent:: when current class scope has no parent
2019-06-20 23:14:50 +02:00
db989487a1
Updated docs
2019-06-20 15:03:37 +02:00
ea365c9e83
Removed Round methods from Game
...
Probably follow-up to 8fe7bc73ee28fe1cbe572e3ccec97fe40b679188
2019-06-20 13:52:37 +02:00
b0d194daca
Better PHPDoc generation. Also removed the models
2019-06-19 21:46:23 +02:00
4076b4e69c
Fixed reading out no result
2019-05-28 10:07:40 +02:00
7bafdc6d5f
Updated phpdoc
2019-04-25 14:09:50 +02:00
5625e0c7c0
Reimplemented creation of results
2019-03-20 12:46:46 +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