File: D:/HostingSpaces/SBogers10/reiskick.komma.nl/app/Exceptions/Solutions/RemoveHasSiteInterface.php
<?php declare(strict_types=1);
namespace App\Exceptions\Solutions;
use Facade\IgnitionContracts\Solution;
use Komma\KMS\Components\Component\ComponentSaveState;
use Komma\KMS\Components\ComponentType\ComponentTypeFactory;
use Komma\KMS\Components\ComponentType\Types\AbstractComponentType;
class RemoveHasSiteInterface implements Solution
{
public function getSolutionTitle(): string
{
return 'Remove the HasSiteInterface from the Model';
}
public function getSolutionDescription(): string
{
return 'The provided Model "" has an HasSiteInterface implemented, yet the site_id is not found within the database column. Remove the HasSiteInterface if this is not needed in this application.';
}
public function getDocumentationLinks(): array
{
return [
];
}
}