Files
EasySoft-ZenTaoPMS/module/gitfox/test/gitfox.class.php
T
2024-04-12 15:22:01 +08:00

24 lines
391 B
PHP
Executable File

<?php
class gitfoxTest
{
public $tester;
public function __construct()
{
global $tester;
$this->tester = $tester;
$this->gitfox = $this->tester->loadModel('gitfox');
}
/**
* Get gitfox pairs
*
* @return string
*/
public function getPairs()
{
$pairs = $this->gitfox->getPairs();
return $pairs;
}
}