Skip to content

Commit b5ac86e

Browse files
committed
fix: package update
1 parent 255ca1c commit b5ac86e

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/AbstractServer.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ abstract class AbstractServer implements ServerInterface
99
{
1010
protected string|null $documentRoot = null;
1111
protected string|null $routerScript = null;
12-
protected string|null $envDir = null;
1312
protected Closure|null $requestCallback = null;
1413

1514
public function __construct(
@@ -30,12 +29,6 @@ public function setDocumentRoot(string $path): static
3029
return $this;
3130
}
3231

33-
public function setEnvDirectory(string $path): static
34-
{
35-
$this->envDir = $path;
36-
return $this;
37-
}
38-
3932
public function onRequest(callable $callback): static
4033
{
4134
$this->requestCallback = $callback;

0 commit comments

Comments
 (0)