rename interface

This commit is contained in:
2026-05-31 17:28:48 -04:00
parent 7b7e40036d
commit 3c9f3d6918
2 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
"license": "MIT",
"autoload": {
"psr-4": {
"Potter\\": "src/Potter/Contract/"
"Potter\\Startable\\": "src/Potter/Startable/"
}
},
"authors": [
@@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace Potter\Startable;
interface StartableInterface
{
public function start(): void;
}