Skip to content

Commit

Permalink
Document the queue
Browse files Browse the repository at this point in the history
  • Loading branch information
srtfisher committed Mar 21, 2024
1 parent c9a2ce3 commit d347258
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions app/jobs/class-send-welcome-email.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php
/**
* Send_Welcome_Email class file
*
* @package Mantle
*/

namespace App\Jobs;

use Mantle\Contracts\Queue\Can_Queue;
use Mantle\Contracts\Queue\Job;
use Mantle\Queue\Dispatchable;
use Mantle\Queue\Queueable;

/**
* Send_Welcome_Email Job.
*/
class Send_Welcome_Email implements Job, Can_Queue {
use Queueable, Dispatchable;

/**
* Handle the job.
*/
public function handle() {
// Handle it here!
}
}

0 comments on commit d347258

Please sign in to comment.