File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace frdlweb ;
4
+
5
+ interface StubInterface
6
+ {
7
+ public function init () : void ;
8
+ public function moduleLocation (?string $ location = null );
9
+ public function installTo (string $ location , bool $ forceCreateDirectory = false , $ mod = 0755 ) : object ;
10
+ public function isIndex (bool $ onlyIfFirstFileCall = true ) : bool ;
11
+ public function install (?array $ params = [] ) : bool |array ;
12
+ public function uninstall (?array $ params = [] ) : bool |array ;
13
+ public function setDownloadSource (string $ source );
14
+ public function get (string $ id ) : object |bool ;
15
+ public function setStubIndexPhp (string $ id , string $ code , ?string $ toFile = null ) : bool ;
16
+ public function load (string $ file , ?string $ as = null ) : object ;
17
+ public function isIndexRequest () : bool ;
18
+ public function runAsIndex (?bool $ showErrorPageReturnBoolean = true ) : bool |object ;
19
+ }
You can’t perform that action at this time.
0 commit comments