We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36db8e5 commit 3621077Copy full SHA for 3621077
1 file changed
Html.php
@@ -72,18 +72,18 @@ public function __construct(
72
foreach ($config as $k => $v) {
73
$this->{$k} = $v;
74
}
75
- } elseif (method_exists('Config\Html', 'getParams')) {
76
- foreach ((new \Config\Html)->getParams() as $k => $v) {
+ } elseif (method_exists('\Config\Devbr\Html', 'getParams')) {
+ foreach ((new \Config\Devbr\Html)->getParams() as $k => $v) {
77
78
79
80
81
if ($this->pathHtml === null) {
82
- $this->pathHtml = \App::Html();
+ $this->pathHtml = dirname(dirname(dirname(__DIR__))).'/Html';
83
84
85
if ($this->pathWww === null) {
86
- $this->pathWww = \App::Web();
+ $this->pathWww = dirname(dirname(dirname(dirname(__DIR__))));
87
88
89
if ($this->url === null) {
0 commit comments