Файловый менеджер - Редактировать - /home/digitalm/yhubita/wp-content/plugins/anti-spam/includes/scanner/classes/scanner/Result.php
Назад
<?php namespace WBCR\Titan\MalwareScanner; /** * Class Result * * @author Alexander Gorenkov <g.a.androidjc2@ya.ru> */ class Result implements \JsonSerializable { /** * @var Signature */ private $signature; /** * @var File */ private $file; /** * @var int */ private $line; /** * @var string */ private $match; /** * Result constructor. * * @param Signature $signature * @param File $file * @param int $line * @param string $match */ public function __construct( $signature, $file, $line, $match ) { $file->clearLoadedData(); $this->signature = $signature; $this->file = $file; $this->line = $line; $this->match = $match; } /** * @return Signature */ public function getSignature() { return $this->signature; } /** * @return File */ public function getFile() { return $this->file; } /** * @return int */ public function getLine() { return $this->line; } /** * @return string */ public function getMatch() { return $this->match; } public function __toString() { return sprintf("%d_%s_%d", $this->signature->getId(), $this->file->getPath( true ), $this->line ); } public function jsonSerialize() { return [ 'file' => $this->file, 'match' => $this->match, 'signature' => $this->signature, ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Генерация страницы: 0.05 |
proxy
|
phpinfo
|
Настройка