Merge pull request #4983 from colemanw/CRM-15842
[civicrm-core.git] / CRM / Extension / Mapper.php
index 0a6b59ae4e55bb8e6aa68f60ef93d668572cdf3a..0b1afae8113b9318f3ab5176345e98e466b32009 100755 (executable)
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  * This class proivdes various helper functions for locating extensions
@@ -147,7 +147,7 @@ class CRM_Extension_Mapper {
    * @param string $key
    *   A string which might be an extension key.
    *
-   * @return boolean
+   * @return bool
    *   true if given string is an extension name
    */
   public function isExtensionKey($key) {
@@ -162,7 +162,7 @@ class CRM_Extension_Mapper {
    * @param string $clazz
    *   A string which might be an extension class name.
    *
-   * @return boolean
+   * @return bool
    *   true if given string is an extension class name
    */
   public function isExtensionClass($clazz) {
@@ -393,7 +393,7 @@ class CRM_Extension_Mapper {
     $pathElm = explode(DIRECTORY_SEPARATOR, $path);
     array_pop($pathElm);
     return implode(DIRECTORY_SEPARATOR, $pathElm) . DIRECTORY_SEPARATOR . self::EXT_TEMPLATES_DIRNAME;
-    */
+     */
   }
 
   /**
@@ -419,4 +419,5 @@ class CRM_Extension_Mapper {
       $this->cache->delete($this->cacheKey . '/moduleFiles');
     }
   }
+
 }