Merge pull request #21525 from eileenmcnaughton/cont_dep
[civicrm-core.git] / CRM / Queue / TaskContext.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 * Describe the runtime environment in which a queue task executes
14 */
15class CRM_Queue_TaskContext {
16
17 /**
18 * @var CRM_Queue_Queue
19 */
4523a2f5 20 public $queue;
6a488035
TO
21
22 /**
23 * @var Log
24 */
4523a2f5 25 public $log;
96025800 26
6a488035 27}