Mise en place intégration Discord

This commit is contained in:
Angels-dev
2024-08-22 02:37:00 +02:00
parent 2be55bc65d
commit bc4489098d
34 changed files with 4054 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Exception;
use Symfony\Component\HttpKernel\Exception\HttpException;
class DiscordApiException extends HttpException
{
public function __construct(int $statusCode, string $message = '', \Throwable $previous = null, array $headers = [], int $code = 0)
{
parent::__construct($statusCode, $message, $previous, $headers, $code);
}
}