Pony.fm/app/Library/External.php
2015-08-30 14:01:12 +01:00

16 lines
No EOL
299 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 . '"');
}
}
}