Pony.fm/app/library/External.php
2013-07-26 19:15:07 -05:00

14 lines
No EOL
266 B
PHP

<?php
use Illuminate\Support\Facades\Log;
class External {
public static function execute($command) {
$output = [];
$error = exec($command, $output);
if ($error != null) {
Log::error('"' . $command . '" failed with "' . $error . '"');
}
}
}