Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/AbuseFilter/includes/Filter/Specs.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; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка