mirror of
https://github.com/opdavies/glassboxx-sdk-php.git
synced 2025-02-17 22:50:48 +00:00
9 lines
151 B
PHP
9 lines
151 B
PHP
|
<?php
|
||
|
|
||
|
namespace Opdavies\Glassboxx\Request;
|
||
|
|
||
|
abstract class AbstractRequest
|
||
|
{
|
||
|
public const BASE_URL = 'https://server.glassboxx.co.uk/rest/V1';
|
||
|
}
|