Common.js - whitespace fixes
[civicrm-core.git] / CRM / Queue / Service.php
index f0c1ba29b6fe0787fa385035eeee04111bd72f82..ff48adb2f7d55ee260f3a6348ef117120a947bb6 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -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();
@@ -139,7 +138,7 @@ class CRM_Queue_Service {
   }
 
   /**
-   * Convert a queue "type" name to a class name
+   * Convert a queue "type" name to a class name.
    *
    * @param string $type
    *   E.g. "interactive", "immediate", "stomp", "beanstalk".
@@ -169,4 +168,5 @@ class CRM_Queue_Service {
     $class = new ReflectionClass($this->getQueueClass($queueSpec['type']));
     return $class->newInstance($queueSpec);
   }
+
 }