Skip to content

Commit

Permalink
Support even more nested installations.
Browse files Browse the repository at this point in the history
  • Loading branch information
fago committed Mar 18, 2019
1 parent 719e7f5 commit 7542c0f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bin/request-matcher-site-variables
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ elseif (is_file($autoload = __DIR__ . '/../../vendor/autoload.php')) {
elseif (is_file($autoload = __DIR__ . '/../../../vendor/autoload.php')) {
require($autoload);
}
elseif (is_file($autoload = __DIR__ . '/../../../../../vendor/autoload.php')) {
require($autoload);
}


echo \drunomics\MultisiteRequestMatcher\RequestMatcher::getInstance()
->getSiteVariables();

0 comments on commit 7542c0f

Please sign in to comment.