for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Services;
use App\Models\Recruitment;
abstract class RecruitmentAwareSeeder extends TenantAwareSeeder
{
/**
* The name of the default connection.
*
* @var Recruitment
*/
protected $recruitment;
* @param Recruitment $recruitment
public function setRecruitment(Recruitment $recruitment): RecruitmentAwareSeeder
$this->recruitment = $recruitment;
return $this;
}