Skip to content

Commit

Permalink
Update Application.php
Browse files Browse the repository at this point in the history
bugfix: $this in static function
  • Loading branch information
christopheg authored Dec 21, 2022
1 parent 2d58238 commit 18229d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Skeleton/Core/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ public static function get_application_type($application_name): string {
$application_path = realpath($config->application_path . '/' . $application_name);

if (!file_exists($application_path . '/config')) {
throw new \Exception('No config directory created in app ' . $this->path);
throw new \Exception('No config directory created in app ' . $application_name);
}

/**
Expand Down

0 comments on commit 18229d6

Please sign in to comment.