20 lines
336 B
PHP
20 lines
336 B
PHP
<?php
|
|
|
|
namespace Database\Component\Seeders;
|
|
|
|
use App\Models\Subscriber;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class AddAfterMenuUploadSubscriber extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Subscriber::add('sync:postmenu', 'hello:gethello', 10);
|
|
}
|
|
}
|