Pony.fm/app/library/External.php

14 lines
266 B
PHP
Raw Normal View History

2013-07-27 02:15:07 +02:00
<?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 . '"');
}
}
}