File "Status.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/better-wp-security/core/modules/site-scanner/Model/Status.php
File size: 195 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace iThemesSecurity\Site_Scanner;
interface Status {
const CLEAN = 'clean';
const WARN = 'warn';
const ERROR = 'error';
const ALL = [ self::CLEAN, self::WARN, self::ERROR ];
}