1
0
Fork 0
mirror of synced 2024-06-13 16:24:47 +12:00
appwrite/tests/benchmarks/Scopes/Scope.php
2022-12-15 19:38:25 +02:00

15 lines
310 B
PHP

<?php
namespace Tests\Benchmarks\Scopes;
use PhpBench\Attributes\AfterMethods;
use PhpBench\Attributes\BeforeMethods;
use Tests\E2E\Scopes\Scope as E2EScope;
#[BeforeMethods(['setUp'])]
#[AfterMethods(['tearDown'])]
abstract class Scope extends E2EScope
{
protected $endpoint = 'http://localhost/v1';
}