Merge branch 4.5 into 4.6
[civicrm-core.git] / Civi / CiUtil / EnvTestRunner.php
index 876c4e010b7d8a4a8941820c4dd910a0420214b3..f5e0502758cf45b9df5fbf5e7b2ee623f575c058 100644 (file)
@@ -8,6 +8,10 @@ class EnvTestRunner {
   protected $phpunit;
   protected $envTestSuite;
 
+  /**
+   * @param string $phpunit
+   * @param string $envTestSuite
+   */
   public function __construct($phpunit = "phpunit", $envTestSuite = 'EnvTests') {
     $this->phpunit = $phpunit;
     $this->envTestSuite = $envTestSuite;
@@ -29,4 +33,5 @@ class EnvTestRunner {
     unlink($jsonFile);
     return $results;
   }
+
 }