Skip to content

Commit ed5f70e

Browse files
authored
Create frdlweb\StubHelperInterface.php
1 parent 17f2712 commit ed5f70e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/frdlweb\StubHelperInterface.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
namespace frdlweb;
4+
5+
interface StubHelperInterface
6+
{
7+
public function runStubs($stubs=null);
8+
public function addPhpStub($code, $file = null);
9+
public function addWebfile($path, $contents, $contentType = 'application/x-httpd-php', $n = 'php');
10+
public function addClassfile($class, $contents);
11+
public function get_file($part, $file, $name);
12+
public function Autoload($class);
13+
public function __toString();
14+
public function __invoke();
15+
public function __call($name, $arguments);
16+
public function getFileAttachment($file = null, $offset = null, ?bool $throw = true);
17+
public function hugRunner(mixed $runner);
18+
public function getRunner();
19+
//public function _run_php_1(StubItemInterface $part, $class = null, ?bool $lint = null);
20+
}

0 commit comments

Comments
 (0)