Skip to content

Commit 293c6bf

Browse files
authored
Update and rename StubRunnerInterface.php to StubRunnerInterface.php
1 parent fc3aba6 commit 293c6bf

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/Frdlweb/StubRunnerInterface.php renamed to src/frdlweb/StubRunnerInterface.php

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,25 @@
22

33
namespace frdlweb;
44

5-
interface StubRunnerInterface
5+
interface StubRunnerInterface extends StubInterface
66
{
7-
public function loginRootUser($username = null, $password = null) : bool;
8-
public function isRootUser() : bool;
7+
public function instance(?object $instance = null) : object;
8+
// public function loginRootUser($username = null, $password = null) : bool;
9+
// public function isRootUser() : bool;
910
public function getStubVM() : StubHelperInterface;
1011
public function getStub() : StubItemInterface;
11-
public function __invoke() :?StubHelperInterface;
12+
public function __invoke() :?StubHelperInterface;
1213
public function hugVM(?StubHelperInterface $MimeVM);
1314
public function getInvoker();
1415
public function getShield();
1516
public function autoloading() : void;
1617
public function config(?array $config = null, $trys = 0) : array;
1718
public function configVersion(?array $config = null, $trys = 0) : array;
1819
public function getCodebase() :?\Frdlweb\Contract\Autoload\CodebaseInterface;
20+
public function getFrdlwebWorkspaceDirectory() : string;
1921
public function getWebrootConfigDirectory() : string;
2022
public function getApplicationsDirectory() : string;
23+
public function getRemoteAutoloader() : LoaderInterface;
24+
public function autoUpdateStub(string | bool $update = null, string $newVersion = null, string $url = null);
25+
2126
}

0 commit comments

Comments
 (0)