CRM-11856 - Update custom values when option values are modified
[civicrm-core.git] / tests / phpunit / Utils.php
index 51ac65e77d01c588dc9c72ad181dab13e255412b..1e31961069e73f23aa6662eb2aa6868bba770fd0 100644 (file)
 class Utils {
 
   /**
-   *  PDO for the database
+   *  PDO for the database.
    * @var PDO
    */
   public $pdo;
 
   /**
-   *  Construct an object for this database
+   *  Construct an object for this database.
+   * @param $host
+   * @param $port
+   * @param $user
+   * @param $pass
    */
   public function __construct($host, $port, $user, $pass) {
     try {
@@ -59,7 +63,7 @@ class Utils {
   }
 
   /**
-   * Prepare and execute a query
+   * Prepare and execute a query.
    *
    * If the query fails, output a diagnostic message
    * @param string $query
@@ -128,6 +132,7 @@ class Utils {
      ******/
     return TRUE;
   }
+
 }
 // class Utils