mirror of
https://gh.wpcy.net/https://github.com/presswizards/FreeScoutGPT.git
synced 2026-07-15 18:00:25 +08:00
24 lines
500 B
PHP
24 lines
500 B
PHP
<?php
|
|
|
|
/**
|
|
* Copyright (c) 2022-present Tectalic (https://tectalic.com)
|
|
*
|
|
* For copyright and license information, please view the LICENSE file that was distributed with this source code.
|
|
*
|
|
* Please see the README.md file for usage instructions.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests;
|
|
|
|
final class MockUri
|
|
{
|
|
/** @var string */
|
|
public $base;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->base = getenv('OPENAI_CLIENT_TEST_BASE_URI') ?: 'http://127.0.0.1:4010';
|
|
}
|
|
}
|