12 lines
194 B
PHP
12 lines
194 B
PHP
<?php
|
|
|
|
namespace KupShop\SystemInspectionBundle\Inspections;
|
|
|
|
abstract class Inspection implements InspectionInterface
|
|
{
|
|
public function isEnabled(): bool
|
|
{
|
|
return true;
|
|
}
|
|
}
|