mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
10 lines
233 B
PHP
10 lines
233 B
PHP
<?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));
|
|
}
|
|
}
|