Merge remote-tracking branch 'upstream/4.6' into 4.6-master-2015-11-09-14-08-33
[civicrm-core.git] / CRM / Core / Page / QUnit.php
index 5b2ba6b60efa90e36e0ea7309c57730204543998..5920d7779c6173da58180760dd526335b9815f0f 100644 (file)
@@ -9,6 +9,11 @@ require_once 'CRM/Core/Page.php';
 class CRM_Core_Page_QUnit extends CRM_Core_Page {
   protected $tplFile = NULL;
 
+  /**
+   * Run.
+   *
+   * @throws \CRM_Core_Exception
+   */
   public function run() {
     list ($ext, $suite) = $this->getRequestExtAndSuite();
     if (empty($ext) || empty($suite)) {
@@ -46,7 +51,7 @@ class CRM_Core_Page_QUnit extends CRM_Core_Page {
   }
 
   /**
-   * Extrac the extension and suite from the request path
+   * Extract the extension and suite from the request path.
    *
    * @return array
    */
@@ -68,4 +73,5 @@ class CRM_Core_Page_QUnit extends CRM_Core_Page {
       return array(NULL, NULL);
     }
   }
+
 }