golden hour
/opt/PHP-Antimalware-Scanner/src/Interfaces
⬆️ Go Up
Upload
File/Folder
Size
Actions
VerifierInterface.php
478 B
Del
OK
Edit: VerifierInterface.php
<?php /** * PHP Antimalware Scanner. * * @author Marco Cesarato <cesarato.developer@gmail.com> * @license http://opensource.org/licenses/gpl-3.0.html GNU Public License * * @see https://github.com/marcocesarato/PHP-Antimalware-Scanner */ namespace AMWScan\Interfaces; interface VerifierInterface { /** * Initialize path. */ public static function init($path); /** * Is verified file. */ public static function isVerified($path); }
Save