/
v.bolshakov
/
AIEcosystem-Testing
Обзор
Документация
Войти
/
v.bolshakov
/
AIEcosystem-Testing
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
dev
common/shell/Runners/System.php
24 строки
413 B
Developer
Initial commit
03 авг 2026, 17:43
03 авг 2026, 17:43
7433917
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace common\shell\Runners; use common\shell\Commands\CommandInterface; class System implements Runner, ReturnValue { protected int|null $returnValue; public function run(CommandInterface $command) { $this->returnValue = null; return system((string)$command, $this->returnValue); } public function getReturnValue(): ?int { return $this->returnValue; } }