Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
laravel
/
horizon
/
src
/
SupervisorCommands
:
Exec.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Laravel\Horizon; class Exec { /** * Run the given command. * * @param string $command * @return array */ public function run($command) { exec($command, $output); return $output; } }