mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-16 10:39:43 +00:00
105 lines
1.8 KiB
PHP
105 lines
1.8 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace MediaWiki\Extension\AbuseFilter\Filter;
|
||
|
|
||
|
/**
|
||
|
* (Mutable) value object that represents the "specs" of a filter.
|
||
|
*/
|
||
|
class Specs {
|
||
|
/** @var string */
|
||
|
private $rules;
|
||
|
/** @var string */
|
||
|
private $comments;
|
||
|
/** @var string */
|
||
|
private $name;
|
||
|
/** @var string[] */
|
||
|
private $actionsNames;
|
||
|
/** @var string */
|
||
|
private $group;
|
||
|
|
||
|
/**
|
||
|
* @param string $rules
|
||
|
* @param string $comments
|
||
|
* @param string $name
|
||
|
* @param string[] $actionsNames
|
||
|
* @param string $group
|
||
|
*/
|
||
|
public function __construct( string $rules, string $comments, string $name, array $actionsNames, string $group ) {
|
||
|
$this->rules = $rules;
|
||
|
$this->comments = $comments;
|
||
|
$this->name = $name;
|
||
|
$this->actionsNames = $actionsNames;
|
||
|
$this->group = $group;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getRules(): string {
|
||
|
return $this->rules;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $rules
|
||
|
*/
|
||
|
public function setRules( string $rules ): void {
|
||
|
$this->rules = $rules;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getComments(): string {
|
||
|
return $this->comments;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $comments
|
||
|
*/
|
||
|
public function setComments( string $comments ): void {
|
||
|
$this->comments = $comments;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getName(): string {
|
||
|
return $this->name;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $name
|
||
|
*/
|
||
|
public function setName( string $name ): void {
|
||
|
$this->name = $name;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string[]
|
||
|
*/
|
||
|
public function getActionsNames(): array {
|
||
|
return $this->actionsNames;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string[] $actionsNames
|
||
|
*/
|
||
|
public function setActionsNames( array $actionsNames ): void {
|
||
|
$this->actionsNames = $actionsNames;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getGroup(): string {
|
||
|
return $this->group;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $group
|
||
|
*/
|
||
|
public function setGroup( string $group ): void {
|
||
|
$this->group = $group;
|
||
|
}
|
||
|
}
|