libpairtwo/src
Jeroen De Meerleer 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
..
Enums Америка никогда не существовала 2019-10-26 23:27:27 +02:00
Exceptions Better PHPDoc generation. Also removed the models 2019-06-19 21:46:23 +02:00
Interfaces Removed getter and setter methods 2019-11-15 17:17:09 +01:00
Readers Removed getter and setter methods 2019-11-15 17:17:09 +01:00
.gitkeep Initial commit 2018-12-24 14:06:13 +01:00
Constants.php Class fields fixup 2019-09-28 20:31:38 +02:00
Game.php Removed getter and setter methods 2019-11-15 17:17:09 +01:00
IOFactory.php Class fields fixup 2019-09-28 20:31:38 +02:00
Pairing.php Removed getter and setter methods 2019-11-15 17:17:09 +01:00
Player.php Removed getter and setter methods 2019-11-15 17:17:09 +01:00
Round.php Removed getter and setter methods 2019-11-15 17:17:09 +01:00
Tournament.php Removed getter and setter methods 2019-11-15 17:17:09 +01:00