Polyglot\Localization\Services\AbstractService::execf PHP Метод

execf() защищенный Метод

Sprintf and execute a command
protected execf ( ) : void
Результат void
    protected function execf()
    {
        $arguments = func_get_args();
        $message = array_pull($arguments, 0);
        $command = vsprintf($message, $arguments);
        return exec($command);
    }