nyx/tests/dynamic_fixtures/class_method/php/benign.php

11 lines
233 B
PHP
Raw Normal View History

2026-06-05 10:16:30 -05:00
<?php
// Phase 19 (Track M.1) — class-method benign control for PHP.
class UserService {
public function __construct() {}
public function run($input) {
return shell_exec('true ' . escapeshellarg($input));
}
}