Skip to content

Commit

Permalink
MARK YOU'RE AN IDIOT
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-H committed Oct 12, 2021
1 parent 888d40c commit 2e2e395
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

// In a git-based install, the autoloader can be found in the root
if (file_exists(__DIR__ . '/vendor/autsoload.php')) {
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
require_once __DIR__ . '/vendor/autoload.php';
} // In a composer-based install, it's a few levels up.
elseif (file_exists(dirname(__DIR__, 3) . '/vendor/autsoload.php')) {
elseif (file_exists(dirname(__DIR__, 3) . '/vendor/autoload.php')) {
require_once dirname(__DIR__, 3) . '/vendor/autoload.php';
}

Expand Down

0 comments on commit 2e2e395

Please sign in to comment.