| 12345678910111213141516171819202122232425 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxCloudVps\Core\Queue\Job;
- use function ModulesGarden\Servers\ProxmoxCloudVps\Core\Helper\queue;
- /**
- * Trait ChildrenTrait
- * @package ModulesGarden\Servers\ProxmoxCloudVps\Core\Queue\Children
- * @version 1.0.0
- */
- trait ChildrenTrait
- {
- /**
- * @param $job
- * @param $arguments
- * @param null $relType
- * @param null $relId
- * @param null $customId
- */
- protected function addChildToQueue($job, $arguments, $relType = null, $relId = null, $customId = null)
- {
- queue($job, $arguments, $this->model->id, $relType, $relId, $customId);
- }
- }
|