feat : Proxy Subject and Database

This commit is contained in:
2025-09-07 11:37:13 +08:00
parent 7d489eecc4
commit 14ba4674ee
11 changed files with 367 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Interface\Test\Proxy;
interface SubjectInterface
{
/**
* @return void
*/
public function request(): void;
}