HEX
Server: LiteSpeed
System: Linux s3.sitechai.com 4.18.0-553.51.1.lve.1.el8.x86_64 #1 SMP Wed May 14 14:34:57 UTC 2025 x86_64
User: workzeni (2217)
PHP: 8.1.32
Disabled: mail, show_source, system, shell_exec, passthru, exec, eval, shell
Upload Files
File: /home/workzeni/stream-flix.workzenix.com/vendor/pestphp/pest/src/ArchPresets/Php.php
<?php

declare(strict_types=1);

namespace Pest\ArchPresets;

use Pest\Arch\Contracts\ArchExpectation;
use Pest\Expectation;

/**
 * @internal
 */
final class Php extends AbstractPreset
{
    /**
     * Executes the arch preset.
     */
    public function execute(): void
    {
        $this->expectations[] = expect([
            'debug_zval_dump',
            'debug_backtrace',
            'debug_print_backtrace',
            'dump',
            'ray',
            'ds',
            'die',
            'goto',
            'global',
            'var_dump',
            'phpinfo',
            'echo',
            'ereg',
            'eregi',
            'mysql_connect',
            'mysql_pconnect',
            'mysql_query',
            'mysql_select_db',
            'mysql_fetch_array',
            'mysql_fetch_assoc',
            'mysql_fetch_object',
            'mysql_fetch_row',
            'mysql_num_rows',
            'mysql_affected_rows',
            'mysql_free_result',
            'mysql_insert_id',
            'mysql_error',
            'mysql_real_escape_string',
            'print',
            'print_r',
            'var_export',
            'xdebug_break',
            'xdebug_call_class',
            'xdebug_call_file',
            'xdebug_call_int',
            'xdebug_call_line',
            'xdebug_code_coverage_started',
            'xdebug_connect_to_client',
            'xdebug_debug_zval',
            'xdebug_debug_zval_stdout',
            'xdebug_dump_superglobals',
            'xdebug_get_code_coverage',
            'xdebug_get_collected_errors',
            'xdebug_get_function_count',
            'xdebug_get_function_stack',
            'xdebug_get_gc_run_count',
            'xdebug_get_gc_total_collected_roots',
            'xdebug_get_gcstats_filename',
            'xdebug_get_headers',
            'xdebug_get_monitored_functions',
            'xdebug_get_profiler_filename',
            'xdebug_get_stack_depth',
            'xdebug_get_tracefile_name',
            'xdebug_info',
            'xdebug_is_debugger_active',
            'xdebug_memory_usage',
            'xdebug_notify',
            'xdebug_peak_memory_usage',
            'xdebug_print_function_stack',
            'xdebug_set_filter',
            'xdebug_start_code_coverage',
            'xdebug_start_error_collection',
            'xdebug_start_function_monitor',
            'xdebug_start_gcstats',
            'xdebug_start_trace',
            'xdebug_stop_code_coverage',
            'xdebug_stop_error_collection',
            'xdebug_stop_function_monitor',
            'xdebug_stop_gcstats',
            'xdebug_stop_trace',
            'xdebug_time_index',
            'xdebug_var_dump',
            'trap',
        ])->not->toBeUsed();

        $this->eachUserNamespace(
            fn (Expectation $namespace): ArchExpectation => $namespace->not->toHaveSuspiciousCharacters(),
        );
    }
}