mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
14 lines
254 B
PHP
14 lines
254 B
PHP
<?php
|
|
|
|
namespace Tests\Benchmarks;
|
|
|
|
use PhpBench\Attributes\AfterMethods;
|
|
use PhpBench\Attributes\BeforeMethods;
|
|
use Tests\E2E\Scopes\Scope as E2EScope;
|
|
|
|
#[BeforeMethods(['setUp'])]
|
|
#[AfterMethods(['tearDown'])]
|
|
abstract class Scope extends E2EScope
|
|
{
|
|
}
|