Files
kupshop/bundles/KupShop/SystemInspectionBundle/Inspections/InspectionInterface.php
2025-08-02 16:30:27 +02:00

14 lines
283 B
PHP

<?php
namespace KupShop\SystemInspectionBundle\Inspections;
use KupShop\SystemInspectionBundle\InspectionWriters\MessageTypes\InspectionMessage;
interface InspectionInterface
{
/**
* @return InspectionMessage[]|null
*/
public function runInspection(): ?array;
}