Private
Public Access
1
0

chg: dev: update all doc blocks on back-end #8

This commit is contained in:
2026-04-20 21:24:39 +02:00
parent 4944d2aa21
commit 20a969705d
17 changed files with 21 additions and 21 deletions

View File

@@ -32,7 +32,7 @@ use Symfony\Component\Routing\Attribute\Route;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*/
#[AsController]
class GameController extends AbstractController

View File

@@ -2,7 +2,7 @@
/**
* This file is part of the SplendidBear Websites' projects.
*
* Copyright (c) 2019 @ www.splendidbear.org
* Copyright (c) 2026 @ www.splendidbear.org
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.

View File

@@ -26,7 +26,7 @@ use Doctrine\ORM\Mapping\Id;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*/
#[Entity(repositoryClass: GamerRepository::class)]
class Gamer

View File

@@ -2,7 +2,7 @@
/*
* This file is part of the SplendidBear Websites' projects.
*
* Copyright (c) 2026 @ www.splendidbear.org
* 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.
@@ -29,7 +29,7 @@ use Doctrine\ORM\Mapping\OneToOne;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*/
#[Entity(repositoryClass: GridRepository::class)]
class Grid

View File

@@ -2,7 +2,7 @@
/**
* This file is part of the SplendidBear Websites' projects.
*
* Copyright (c) 2026 @ www.splendidbear.org
* 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.
@@ -27,7 +27,7 @@ use Doctrine\ORM\Mapping\ManyToOne;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*/
#[Entity(repositoryClass: GridRowRepository::class)]
class GridRow

View File

@@ -2,7 +2,7 @@
/*
* This file is part of the SplendidBear Websites' projects.
*
* Copyright (c) 2026 @ www.splendidbear.org
* 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.
@@ -33,7 +33,7 @@ use Symfony\Component\Uid\Uuid;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*/
#[Entity(repositoryClass: PlayedGameRepository::class)]
class PlayedGame

View File

@@ -2,7 +2,7 @@
/**
* This file is part of the SplendidBear Websites' projects.
*
* Copyright (c) 2026 @ www.splendidbear.org
* 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.
@@ -27,7 +27,7 @@ use Doctrine\ORM\Mapping\ManyToOne;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*/
#[Entity(repositoryClass: StepRepository::class)]
class Step

View File

@@ -22,7 +22,7 @@ use Doctrine\Persistence\ManagerRegistry;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*/
class GamerRepository extends ServiceEntityRepository
{

View File

@@ -22,7 +22,7 @@ use Doctrine\Persistence\ManagerRegistry;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*
* @method Grid|null find($id, $lockMode = null, $lockVersion = null)
* @method Grid|null findOneBy(array $criteria, array $orderBy = null)

View File

@@ -22,7 +22,7 @@ use Doctrine\Persistence\ManagerRegistry;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*
* @method GridRow|null find($id, $lockMode = null, $lockVersion = null)
* @method GridRow|null findOneBy(array $criteria, array $orderBy = null)

View File

@@ -24,7 +24,7 @@ use Doctrine\Persistence\ManagerRegistry;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*
* @method PlayedGame|null find($id, $lockMode = null, $lockVersion = null)
* @method PlayedGame|null findOneBy(array $criteria, array $orderBy = null)

View File

@@ -25,7 +25,7 @@ use RuntimeException;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*
* @method Step|null find($id, $lockMode = null, $lockVersion = null)
* @method Step|null findOneBy(array $criteria, array $orderBy = null)

View File

@@ -30,7 +30,7 @@ use Symfony\Component\Uid\Uuid;
* @link www.splendidbear.org
* @since 2026. 04. 14.
*/
class BattleCardGenerator
final class BattleCardGenerator
{
private const int WIDTH = 1200;
private const int HEIGHT = 630;

View File

@@ -24,7 +24,7 @@ use Symfony\Contracts\HttpClient\HttpClientInterface;
* @link www.splendidbear.org
* @since 2026. 04. 12.
*/
readonly class RecaptchaService
readonly final class RecaptchaService
{
private const string SITEVERIFY_URL = 'https://www.google.com/recaptcha/api/siteverify';

View File

@@ -28,7 +28,7 @@ use RuntimeException;
* @link www.splendidbear.org
* @since 2026. 04. 12.
*/
readonly class WebAuthnService
readonly final class WebAuthnService
{
public function __construct(
private WebAuthnCredentialRepository $credentialRepository,

View File

@@ -33,7 +33,7 @@ use Symfony\Component\Uid\Uuid;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*/
class RpcManager implements RpcManagerInterface
{

View File

@@ -38,7 +38,7 @@ use Symfony\Component\Mercure\Update;
* @category Class
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
* @link www.splendidbear.org
* @since 2026. 04. 09.
* @since 2019. 10. 27.
*/
readonly class TopicManager implements TopicManagerInterface
{