コード例 #1
0
ファイル: TestCase.php プロジェクト: icewind1991/koel
 public function __construct()
 {
     parent::__construct();
     $this->mediaPath = dirname(__FILE__) . '/songs';
 }
コード例 #2
0
ファイル: TestCase.php プロジェクト: phanan/koel
 public function __construct()
 {
     parent::__construct();
     $this->mediaPath = __DIR__ . '/songs';
 }
コード例 #3
0
ファイル: TestCase.php プロジェクト: ahk-ch/chamb.net
 public function __construct($name = null, array $data = [], $dataName = '')
 {
     parent::__construct($name, $data, $dataName);
 }
コード例 #4
0
ファイル: TestCase.php プロジェクト: Hiroto-K/HkApps
 /**
  * TestCase constructor.
  *
  * @param mixed  $name
  * @param array  $data
  * @param string $dataName
  */
 public function __construct($name = null, array $data = [], $dataName = '')
 {
     parent::__construct($name, $data, $dataName);
     $this->createApplication();
 }