Pony.fm/app/Library/External.php

16 lines
299 B
PHP
Raw Normal View History

2015-08-30 15:01:12 +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 . '"');
}
}
}