Custom Options
<?php
Haystack::build()
->addJob(new RecordPodcast)
->setOption('someCustomOption', 'option-value')
->dispatch();<?php
$this->getHaystackOptions(); // HaystackOptions.php
$this->getHaystackOption('someCustomOption'); // "option-value"Last updated