Example #1
0
 public function __construct($options = array())
 {
     // for BC
     if (!is_array($options)) {
         $options = array();
         // drop the old output because it is not compatible with LimeTest
     } else {
         if (array_key_exists('php_cli', $options)) {
             $options['executable'] = $options['php_cli'];
             unset($options['php_cli']);
         }
     }
     parent::__construct($options);
 }