create ResourceAwareInterface

This commit is contained in:
2026-07-10 16:11:39 -04:00
parent 06b1ea046e
commit 87df263393
@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace Potter\Resource;
interface ResourceAwareInterface
{
public function detachResource();
public function getResource();
public function getResourceId(): int;
public function getResourceType(): string;
}