chore(namespace): rewirtten namspeace from app to GitContributionGraph.

This commit is contained in:
2026-07-12 22:47:34 +02:00
parent 91bda21f89
commit 41e88144a4
35 changed files with 122 additions and 68 deletions
+2 -2
View File
@@ -2,9 +2,9 @@
declare(strict_types=1);
namespace App\Service;
namespace GitContributionGraph\Service;
use App\Service\Provider\ProviderInterface;
use GitContributionGraph\Service\Provider\ProviderInterface;
use Psr\Log\LoggerInterface;
use Symfony\Component\DependencyInjection\Attribute\AutowireIterator;
+3 -3
View File
@@ -2,10 +2,10 @@
declare(strict_types=1);
namespace App\Service;
namespace GitContributionGraph\Service;
use App\Entity\Contribution;
use App\Entity\ContributionCollection;
use GitContributionGraph\Entity\Contribution;
use GitContributionGraph\Entity\ContributionCollection;
use PDO;
class ContributionStore
+1 -1
View File
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Service\Provider;
namespace GitContributionGraph\Service\Provider;
use Psr\Log\LoggerInterface;
use Symfony\Component\HttpKernel\Exception\ServiceUnavailableHttpException;
+1 -1
View File
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Service\Provider;
namespace GitContributionGraph\Service\Provider;
use Psr\Log\LoggerInterface;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
+1 -1
View File
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Service\Provider;
namespace GitContributionGraph\Service\Provider;
use Psr\Log\LoggerInterface;
use Symfony\Contracts\HttpClient\HttpClientInterface;
+1 -1
View File
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Service\Provider;
namespace GitContributionGraph\Service\Provider;
use Symfony\Contracts\HttpClient\Exception\HttpExceptionInterface;
use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
+1 -1
View File
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Service\Provider;
namespace GitContributionGraph\Service\Provider;
enum ProviderErrorCode: string
{
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Service\Provider;
namespace GitContributionGraph\Service\Provider;
use Symfony\Component\DependencyInjection\Attribute\AutowireIterator;
+1 -1
View File
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Service\Provider;
namespace GitContributionGraph\Service\Provider;
interface ProviderInterface
{
+1 -1
View File
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Service\Provider;
namespace GitContributionGraph\Service\Provider;
final class ProviderStatus
{
+1 -1
View File
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Service\Provider;
namespace GitContributionGraph\Service\Provider;
enum ProviderStatusType: string
{
+1 -1
View File
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Service\Renderer;
namespace GitContributionGraph\Service\Renderer;
/**
* Renders a GitHub-style contribution heatmap as an inline SVG.