refactor: improvemets
All checks were successful
Build Test / build (pull_request) Successful in 52s
JS Unit Tests / test (pull_request) Successful in 52s
PHP Unit Tests / test (pull_request) Successful in 52s

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-03-24 19:13:19 -04:00
parent bcb3431aaa
commit 5254b859d2
6 changed files with 130 additions and 10 deletions

View File

@@ -9,14 +9,16 @@ declare(strict_types=1);
namespace KTXF\Resource\Documents\Service;
use KTXF\Resource\Provider\ResourceServiceMutateInterface;
/**
* Chrono Service Mutable Interface
* Documents Service Mutable Interface
*
* Extends base service interface with setter methods for mutable properties.
* Used for service configuration and updates.
*
* @since 2025.05.01
*/
interface ServiceMutableInterface extends ServiceBaseInterface {
interface ServiceMutableInterface extends ServiceBaseInterface, ResourceServiceMutateInterface {
}