Merge pull request #4713 from colemanw/CRM-15710
[civicrm-core.git] / CRM / Contact / DAO / Factory.php
index 419885a19dd893dcec6880cfdac1ad0d41e84bec..27d264fb2edab6e81b83762b02a7c0618e9ca93c 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 
+/**
+ * Class CRM_Contact_DAO_Factory
+ */
 class CRM_Contact_DAO_Factory {
 
   static $_classes = array(
@@ -23,6 +26,11 @@ class CRM_Contact_DAO_Factory {
 
   static $_suffix = '.php';
 
+  /**
+   * @param $className
+   *
+   * @return mixed
+   */
   static function &create($className) {
     $type = CRM_Utils_Array::value($className, self::$_classes);
     if (!$type) {