PHP Classes

File: src/Module/engines/Spamhaus.php

Recommend this page to a friend!
  Classes of stefan   contao PHP Spambot Detection   src/Module/engines/Spamhaus.php   Download  
File: src/Module/engines/Spamhaus.php
Role: Class source
Content type: text/plain
Description: Class source
Class: contao PHP Spambot Detection
Detect and block spam bots from accessing sites
Author: By
Last change:
Date: 1 year ago
Size: 492 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);

/*
 * sync*gw SpamBot Bundle
 *
 * @copyright https://syncgw.com, 2013 - 2022
 * @author Florian Daeumling, https://syncgw.com
 * @license http://opensource.org/licenses/lgpl-3.0.html
 */

use syncgw\SpamBotBundle\Module\SpamBot;

class
Spamhaus extends SpamBot {
   
/*
     * @var string
     */
   
protected $Name = 'Spamhaus';
   
/*
     * @var array
     */
   
protected $Fields = [ 'spambot_spamhaus_mods' => 1 ];
}

?>