mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-20 20:38:45 +00:00
12 lines
222 B
PHP
12 lines
222 B
PHP
<?php
|
|
|
|
namespace SuiteCRM\Test\Driver;
|
|
|
|
class PhpBrowserDriver extends \Codeception\Module\PhpBrowser
|
|
{
|
|
public function _initialize()
|
|
{
|
|
$config = $this->_getConfig();
|
|
parent::_initialize();
|
|
}
|
|
}
|