Merge pull request #5384 from davecivicrm/CRM-16108
[civicrm-core.git] / tests / phpunit / AllTests.php
index 7d73bf1915d541ac9d619b36e95e4a69d2d0dd0b..88b46301dcf8615451aeac7f5eec8d3f75f11014 100644 (file)
@@ -44,22 +44,22 @@ class AllTests extends CiviTestSuite {
   private static $instance = NULL;
 
   /**
-   *
    */
   private static function getInstance() {
     if (is_null(self::$instance)) {
-      self::$instance = new self;
+      self::$instance = new self();
     }
     return self::$instance;
   }
 
   /**
-   *  Build test suite dynamically
+   *  Build test suite dynamically.
    */
   public static function suite() {
     $inst = self::getInstance();
     return $inst->implSuite(__FILE__);
   }
+
 }
 // class AllTests