Model\Payload::countSQLi PHP Method

countSQLi() public static method

Returns count of all Payloads that are SQL Injection
public static countSQLi ( ) : mixed
return mixed
    public static function countSQLi()
    {
        $payloads = new self();
        return $payloads->count(array('pType = ?', 'Injection'));
    }