%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,mail,shell_exec,system,proc_open,popen,ini_alter,dl,proc_close,curl_exec,curl_multi_exec,readfile,parse_ini_file,escapeshellarg,escapeshellcmd,show_source,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,mail,php_uname,phpinfo MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/water/vendor/codeception/codeception/ |
Upload File : |
<?php $autoloadFile = './vendor/codeception/codeception/autoload.php'; if (( !isset($argv) || (isset($argv) && !in_array('--no-redirect', $argv)) ) && file_exists('./vendor/autoload.php') && file_exists($autoloadFile) && __FILE__ != realpath($autoloadFile)) { //for global installation or phar file fwrite( STDERR, "\n==== Redirecting to Composer-installed version in vendor/codeception. You can skip this using --no-redirect ====\n" ); if (file_exists('./vendor/codeception/codeception/app.php')) { //codeception v4+ require './vendor/codeception/codeception/app.php'; } else { //older version require $autoloadFile; //require package/bin instead of codecept to avoid printing hashbang line require './vendor/codeception/codeception/package/bin'; } die; } elseif (file_exists(__DIR__ . '/vendor/autoload.php')) { // for phar require_once __DIR__ . '/vendor/autoload.php'; } elseif (file_exists(__DIR__ . '/../../autoload.php')) { //for composer require_once __DIR__ . '/../../autoload.php'; } unset($autoloadFile); if (isset($argv)) { $argv = array_diff($argv, ['--no-redirect']); } if (isset($_SERVER['argv'])) { $_SERVER['argv'] = array_diff($_SERVER['argv'], ['--no-redirect']); } // @codingStandardsIgnoreStart include_once __DIR__ . DIRECTORY_SEPARATOR . 'shim.php'; // compat if (PHP_MAJOR_VERSION < 7) { if (false === interface_exists('Throwable', false)) { interface Throwable {}; } if (false === class_exists('ParseError', false)) { class ParseError extends \Exception {}; } } // @codingStandardsIgnoreEnd // function not autoloaded in PHP, thus its a good place for them if (!function_exists('codecept_debug')) { function codecept_debug($data) { \Codeception\Util\Debug::debug($data); } } if (!function_exists('codecept_root_dir')) { function codecept_root_dir($appendPath = '') { return \Codeception\Configuration::projectDir() . $appendPath; } } if (!function_exists('codecept_output_dir')) { function codecept_output_dir($appendPath = '') { return \Codeception\Configuration::outputDir() . $appendPath; } } if (!function_exists('codecept_log_dir')) { function codecept_log_dir($appendPath = '') { return \Codeception\Configuration::outputDir() . $appendPath; } } if (!function_exists('codecept_data_dir')) { function codecept_data_dir($appendPath = '') { return \Codeception\Configuration::dataDir() . $appendPath; } } if (!function_exists('codecept_relative_path')) { function codecept_relative_path($path) { return \Codeception\Util\PathResolver::getRelativeDir( $path, \Codeception\Configuration::projectDir(), DIRECTORY_SEPARATOR ); } } if (!function_exists('codecept_absolute_path')) { /** * If $path is absolute, it will be returned without changes. * If $path is relative, it will be passed to `codecept_root_dir()` function * to make it absolute. * * @param string $path * @return string the absolute path */ function codecept_absolute_path($path) { return codecept_is_path_absolute($path) ? $path : codecept_root_dir($path); } } if (!function_exists('codecept_is_path_absolute')) { /** * Check whether the given $path is absolute. * * @param string $path * @return bool * @since 2.4.4 */ function codecept_is_path_absolute($path) { return \Codeception\Util\PathResolver::isPathAbsolute($path); } }