Pony.fm/app/library/External.php

14 lines
266 B
PHP
Raw Normal View History

2013-07-26 19:15:07 -05: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 . '"');
}
}
}