11 lines
206 B
PHP
11 lines
206 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands\Helpers;
|
|
|
|
interface CommandExecutorInterface
|
|
{
|
|
public function exec($message, $command);
|
|
|
|
public function artisan($message, $command, array $arguments = []);
|
|
}
|