chg: dev: refactor classes and reformat some layout #3
This commit is contained in:
@@ -1,10 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is part of the SplendidBear Websites' projects.
|
||||
*
|
||||
* Copyright (c) 2019 @ www.splendidbear.org
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace App\Entity;
|
||||
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
/**
|
||||
* Class Gamer
|
||||
*
|
||||
* @package App\Entity
|
||||
* @author system7 <https://www.splendidbear.org>
|
||||
*
|
||||
* @ORM\Entity(repositoryClass="App\Repository\GamerRepository")
|
||||
*/
|
||||
class Gamer
|
||||
|
||||
@@ -1,10 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is part of the SplendidBear Websites' projects.
|
||||
*
|
||||
* Copyright (c) 2019 @ www.splendidbear.org
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace App\Entity;
|
||||
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
/**
|
||||
* Class Grid
|
||||
*
|
||||
* @package App\Entity
|
||||
* @author system7 <https://www.splendidbear.org>
|
||||
*
|
||||
* @ORM\Entity(repositoryClass="App\Repository\GridRepository")
|
||||
*/
|
||||
class Grid
|
||||
|
||||
@@ -1,10 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is part of the SplendidBear Websites' projects.
|
||||
*
|
||||
* Copyright (c) 2019 @ www.splendidbear.org
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace App\Entity;
|
||||
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
/**
|
||||
* Class GridRow
|
||||
*
|
||||
* @package App\Entity
|
||||
* @author system7 <https://www.splendidbear.org>
|
||||
*
|
||||
* @ORM\Entity(repositoryClass="App\Repository\GridRowRepository")
|
||||
*/
|
||||
class GridRow
|
||||
|
||||
@@ -1,4 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is part of the SplendidBear Websites' projects.
|
||||
*
|
||||
* Copyright (c) 2019 @ www.splendidbear.org
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace App\Entity;
|
||||
|
||||
@@ -6,6 +14,11 @@ use App\Application\Sonata\UserBundle\Entity\User;
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
/**
|
||||
* Class PlayedGame
|
||||
*
|
||||
* @package App\Entity
|
||||
* @author system7 <https://www.splendidbear.org>
|
||||
*
|
||||
* @ORM\Entity(repositoryClass="App\Repository\PlayedGameRepository")
|
||||
*/
|
||||
class PlayedGame
|
||||
|
||||
@@ -1,10 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is part of the SplendidBear Websites' projects.
|
||||
*
|
||||
* Copyright (c) 2019 @ www.splendidbear.org
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace App\Entity;
|
||||
|
||||
use Doctrine\ORM\Mapping as ORM;
|
||||
|
||||
/**
|
||||
* Class Step
|
||||
*
|
||||
* @package App\Entity
|
||||
* @author system7 <https://www.splendidbear.org>
|
||||
*
|
||||
* @ORM\Entity(repositoryClass="App\Repository\StepRepository")
|
||||
*/
|
||||
class Step
|
||||
|
||||
Reference in New Issue
Block a user