We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 255ca1c commit b5ac86eCopy full SHA for b5ac86e
src/AbstractServer.php
@@ -9,7 +9,6 @@ abstract class AbstractServer implements ServerInterface
9
{
10
protected string|null $documentRoot = null;
11
protected string|null $routerScript = null;
12
- protected string|null $envDir = null;
13
protected Closure|null $requestCallback = null;
14
15
public function __construct(
@@ -30,12 +29,6 @@ public function setDocumentRoot(string $path): static
30
29
return $this;
31
}
32
33
- public function setEnvDirectory(string $path): static
34
- {
35
- $this->envDir = $path;
36
- return $this;
37
- }
38
-
39
public function onRequest(callable $callback): static
40
41
$this->requestCallback = $callback;
0 commit comments