8 lines
110 B
PHP
8 lines
110 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
interface HRCCommandInterface {
|
|
public function command($data);
|
|
}
|