14 lines
283 B
PHP
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;
|
|
}
|