Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace Statamic\Ignition\SolutionProviders;
namespace Statamic\ErrorSolutions\SolutionProviders;

use Spatie\ErrorSolutions\Contracts\HasSolutionsForThrowable;
use Statamic\Ignition\Solutions\EnableOAuth;
use Statamic\ErrorSolutions\Solutions\EnableOAuth;
use Throwable;

class OAuthDisabled implements HasSolutionsForThrowable
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace Statamic\Ignition\SolutionProviders;
namespace Statamic\ErrorSolutions\SolutionProviders;

use Spatie\ErrorSolutions\Contracts\HasSolutionsForThrowable;
use Statamic\Ignition\Solutions\UpdateClassReference;
use Statamic\ErrorSolutions\Solutions\UpdateClassReference;
use Statamic\Statamic;
use Statamic\Support\Arr;
use Throwable;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Statamic\Ignition\Solutions;
namespace Statamic\ErrorSolutions\Solutions;

use Exception;
use Facades\Statamic\UpdateScripts\Manager as UpdateScriptManager;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Statamic\Ignition\Solutions;
namespace Statamic\ErrorSolutions\Solutions;

use Spatie\ErrorSolutions\Contracts\Solution;
use Statamic\Statamic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Statamic\Ignition\Solutions;
namespace Statamic\ErrorSolutions\Solutions;

use Spatie\ErrorSolutions\Contracts\RunnableSolution;
use Statamic\Statamic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Statamic\Ignition\Solutions;
namespace Statamic\ErrorSolutions\Solutions;

use Spatie\ErrorSolutions\Contracts\Solution;

Expand Down
2 changes: 1 addition & 1 deletion src/Ignition/Value.php → src/ErrorSolutions/Value.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Statamic\Ignition;
namespace Statamic\ErrorSolutions;

use Statamic\Fields\Value as FieldValue;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Exception;
use Spatie\ErrorSolutions\Contracts\ProvidesSolution;
use Spatie\ErrorSolutions\Contracts\Solution;
use Statamic\Ignition\Solutions\EnableComposerUpdateScripts;
use Statamic\ErrorSolutions\Solutions\EnableComposerUpdateScripts;

class ComposerJsonMissingPreUpdateCmdException extends Exception implements ProvidesSolution
{
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/StatamicProRequiredException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Exception;
use Spatie\ErrorSolutions\Contracts\ProvidesSolution;
use Spatie\ErrorSolutions\Contracts\Solution;
use Statamic\Ignition\Solutions\EnableStatamicPro;
use Statamic\ErrorSolutions\Solutions\EnableStatamicPro;

class StatamicProRequiredException extends Exception implements ProvidesSolution
{
Expand Down
4 changes: 2 additions & 2 deletions src/Providers/IgnitionServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
use Illuminate\Contracts\Container\BindingResolutionException;
use Illuminate\Support\ServiceProvider;
use Spatie\ErrorSolutions\Contracts\SolutionProviderRepository;
use Statamic\Ignition\SolutionProviders\OAuthDisabled;
use Statamic\Ignition\SolutionProviders\UsingOldClass;
use Statamic\ErrorSolutions\SolutionProviders\OAuthDisabled;
use Statamic\ErrorSolutions\SolutionProviders\UsingOldClass;

class IgnitionServiceProvider extends ServiceProvider
{
Expand Down
Loading