elektronika_bagisto/tests/api/V1/BaseCest.php

14 lines
196 B
PHP
Raw Permalink Normal View History

<?php
namespace Tests\API\V1;
class BaseCest
{
protected const API_VERSION = 'v1';
protected function getVersionRoute($url)
{
return self::API_VERSION . '/' . $url;
}
}