pixelfed/app/Jobs/ProfilePipeline/DecrementPostCount.php

42 wiersze
795 B
PHP
Czysty Zwykły widok Historia

2022-08-06 09:23:58 +00:00
<?php
namespace App\Jobs\ProfilePipeline;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldBeUnique;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
use App\Profile;
use App\Status;
use App\Services\AccountService;
class DecrementPostCount implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $id;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct($id)
{
$this->id = $id;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
2024-02-04 09:53:40 +00:00
// deprecated
return;
2022-08-06 09:23:58 +00:00
}
}