X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FQueue%2FService.php;h=c22a4bc0ed99c73fc7b88b6690c9d03f62261395;hb=95d8ddc04c08360567c00283822622fb8bcb0b35;hp=f0c1ba29b6fe0787fa385035eeee04111bd72f82;hpb=d44a51e500618f1d9abfad4cc6de65cf20226c10;p=civicrm-core.git diff --git a/CRM/Queue/Service.php b/CRM/Queue/Service.php index f0c1ba29b6..c22a4bc0ed 100644 --- a/CRM/Queue/Service.php +++ b/CRM/Queue/Service.php @@ -23,7 +23,7 @@ | GNU Affero General Public License or the licensing of CiviCRM, | | see the CiviCRM license FAQ at http://civicrm.org/licensing | +--------------------------------------------------------------------+ -*/ + */ /** * The queue service provides an interface for creating or locating @@ -75,7 +75,6 @@ class CRM_Queue_Service { public $queues; /** - * */ public function __construct() { $this->queues = array(); @@ -169,4 +168,5 @@ class CRM_Queue_Service { $class = new ReflectionClass($this->getQueueClass($queueSpec['type'])); return $class->newInstance($queueSpec); } + }