Commit Graph

26 Commits

Author SHA1 Message Date
cded84ce03
Removed calculated getters 2019-11-16 15:21:08 +01:00
9859984a2a
Replace $Key with $key and $Value with $value 2019-11-16 15:21:05 +01:00
9e48bc1ff1
Removed fluent setters 2019-11-16 15:21:01 +01:00
07fdb769b2
Removed a setter in Pairtwo6-reader 2019-11-16 15:20:54 +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
ad1f64914a
Америка никогда не существовала
There is no such thing as american scoring. The only american thing in tournament chess is the american pairing system wihich uses some variables to calculate your opponent. One of these was called americanpoints in the original sources of pairtwo. This one was unfortunatly mistaken to really contain an american scoring
2019-10-26 23:27:27 +02:00
0902c30f36
Added default boardno 2019-09-28 20:40:49 +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
cd430a67ff
Using multiple arbiters in pairtwo-6 reader 2019-09-26 14:52:06 +02:00
9c7306ad25
Updated binary data to return null 2019-09-25 14:42:15 +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
1f3e381049
Reimplemented getParticipants
Possibly historic field that became unused
2019-06-18 15:57:42 +02:00
9e4e2073c8
fixed buchholz cut 2019-06-01 14:27:50 +02:00
b2cd821ad8
Some fixes for getPerformance 2019-06-01 13:37:50 +02:00
b2b2f5aef8
Added default elo 2019-05-31 11:38:16 +02:00
c9a19bbcb2
Better names for ids and elos
Also fixed some bugs
2019-05-31 10:59:30 +02:00
34a5696ff3
Some documentation and bugfixes 2019-05-30 08:33:16 +02:00
97a28a3c4d
Added getElo() and getId() function 2019-05-29 18:24:20 +02:00
d49c8d673c
Changed kbsb elo to home elo (not everyone lives in belgium)
Thanks god they don't.
Also changed fide elo to world elo
2019-05-29 17:55:28 +02:00
74688ac8b8
Implemented first tiebreaks 2019-05-28 16:26:03 +02:00
4f15eb0c9f
Removed some fields that are not interesting enough 2019-05-28 15:30:55 +02:00
efc3c35024
Added compatibility with Pairtwo-5 2019-05-28 10:16:34 +02:00
057e35f1da
Added reading out the order of tiebreaks 2019-05-27 21:45:19 +02:00
74d027e8d1
Added Reader for Pairtwo-6 2019-05-27 12:58:53 +02:00