mirror of
https://github.com/JeroenED/libpairtwo.git
synced 2024-11-21 22:17:41 +01:00
Fixed code style
This commit is contained in:
parent
64e47ff606
commit
8c6e3b81fa
@ -17,4 +17,4 @@ class Color extends Enum
|
|||||||
const white = 1;
|
const white = 1;
|
||||||
const white3 = 3;
|
const white3 = 3;
|
||||||
const none = 0;
|
const none = 0;
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
|
|
||||||
namespace JeroenED\Libpairtwo\Enums;
|
namespace JeroenED\Libpairtwo\Enums;
|
||||||
|
|
||||||
|
|
||||||
use MyCLabs\Enum\Enum;
|
use MyCLabs\Enum\Enum;
|
||||||
|
|
||||||
class Sex extends Enum
|
class Sex extends Enum
|
||||||
@ -16,4 +15,4 @@ class Sex extends Enum
|
|||||||
const Neutral = 0; // Unforturnately, Incompatible with Pairtwo (Dinos)
|
const Neutral = 0; // Unforturnately, Incompatible with Pairtwo (Dinos)
|
||||||
const Male = 1;
|
const Male = 1;
|
||||||
const Female = 2;
|
const Female = 2;
|
||||||
}
|
}
|
||||||
|
@ -25,5 +25,4 @@ class Title extends Enum
|
|||||||
const IM = 10; // International Master
|
const IM = 10; // International Master
|
||||||
const HG = 11; // Honorary Grand Master
|
const HG = 11; // Honorary Grand Master
|
||||||
const GM = 12; // Grand Master
|
const GM = 12; // Grand Master
|
||||||
|
}
|
||||||
}
|
|
||||||
|
@ -12,5 +12,4 @@ use JeroenED\Libpairtwo\Models\Game as GameModel;
|
|||||||
|
|
||||||
class Game extends GameModel
|
class Game extends GameModel
|
||||||
{
|
{
|
||||||
|
}
|
||||||
}
|
|
||||||
|
@ -8,8 +8,6 @@
|
|||||||
|
|
||||||
namespace JeroenED\Libpairtwo\Models;
|
namespace JeroenED\Libpairtwo\Models;
|
||||||
|
|
||||||
|
|
||||||
class Game
|
class Game
|
||||||
{
|
{
|
||||||
|
}
|
||||||
}
|
|
||||||
|
@ -99,6 +99,4 @@ class Pairing
|
|||||||
{
|
{
|
||||||
$this->Round = $Round;
|
$this->Round = $Round;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
namespace JeroenED\Libpairtwo\Models;
|
namespace JeroenED\Libpairtwo\Models;
|
||||||
|
|
||||||
use JeroenED\Libpairtwo\Enums\Title;
|
use JeroenED\Libpairtwo\Enums\Title;
|
||||||
use JeroenED\Libpairtwo\Enums\Sex;
|
use JeroenED\Libpairtwo\Enums\Sex;
|
||||||
use DateTime;
|
use DateTime;
|
||||||
|
@ -25,10 +25,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
namespace JeroenED\Libpairtwo\Models;
|
namespace JeroenED\Libpairtwo\Models;
|
||||||
|
|
||||||
use JeroenED\Libpairtwo\Enums\TournamentSystem;
|
use JeroenED\Libpairtwo\Enums\TournamentSystem;
|
||||||
use DateTime;
|
use DateTime;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Description of Sws
|
* Description of Sws
|
||||||
*
|
*
|
||||||
@ -393,7 +393,4 @@ class Tournament
|
|||||||
{
|
{
|
||||||
$this->Pairings = $Pairings;
|
$this->Pairings = $Pairings;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -12,5 +12,4 @@ use JeroenED\Libpairtwo\Models\Pairing as PairingModel;
|
|||||||
|
|
||||||
class Pairing extends PairingModel
|
class Pairing extends PairingModel
|
||||||
{
|
{
|
||||||
|
}
|
||||||
}
|
|
||||||
|
@ -10,7 +10,6 @@ namespace JeroenED\LibPairtwo;
|
|||||||
|
|
||||||
use JeroenED\Libpairtwo\Models\Player as PlayerModel;
|
use JeroenED\Libpairtwo\Models\Player as PlayerModel;
|
||||||
|
|
||||||
class Player Extends PlayerModel
|
class Player extends PlayerModel
|
||||||
{
|
{
|
||||||
|
}
|
||||||
}
|
|
||||||
|
@ -12,5 +12,4 @@ use JeroenED\Libpairtwo\Models\Round as RoundModel;
|
|||||||
|
|
||||||
class Round extends RoundModel
|
class Round extends RoundModel
|
||||||
{
|
{
|
||||||
|
}
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user