Merge pull request #4983 from colemanw/CRM-15842
[civicrm-core.git] / CRM / Queue / Service.php
index f0c1ba29b6fe0787fa385035eeee04111bd72f82..c22a4bc0ed99c73fc7b88b6690c9d03f62261395 100644 (file)
@@ -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);
   }
+
 }