feat: implement AI styling foundation and billing scope rework
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-02-06 20:01:58 +01:00
parent df00deb0df
commit 36bed12ff9
80 changed files with 8944 additions and 49 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace App\Services\AiEditing\Providers;
use App\Models\AiEditRequest;
use App\Services\AiEditing\AiProviderResult;
use App\Services\AiEditing\Contracts\AiImageProvider;
class NullAiImageProvider implements AiImageProvider
{
public function submit(AiEditRequest $request): AiProviderResult
{
return AiProviderResult::failed(
'provider_not_supported',
sprintf('The AI provider "%s" is not supported.', $request->provider)
);
}
public function poll(AiEditRequest $request, string $providerTaskId): AiProviderResult
{
return AiProviderResult::failed(
'provider_not_supported',
sprintf('The AI provider "%s" is not supported.', $request->provider)
);
}
}