diff --git a/packages/framework/src/Console/Commands/DebugCommand.php b/packages/framework/src/Console/Commands/DebugCommand.php index b722fb70bcb..cd87f65c5d4 100644 --- a/packages/framework/src/Console/Commands/DebugCommand.php +++ b/packages/framework/src/Console/Commands/DebugCommand.php @@ -7,11 +7,13 @@ use Hyde\Hyde; use Hyde\Facades\Config; use Composer\InstalledVersions; +use Hyde\Foundation\PharSupport; use LaravelZero\Framework\Commands\Command; use function str_replace; use function realpath; use function app; +use function get_included_files; /** * Print debug information. @@ -50,6 +52,10 @@ public function handle(): int $this->printVerbosePathInformation(); } else { $this->comment('Project directory: '.Hyde::path()); + + if (PharSupport::running()) { + $this->comment('Application binary path: '.get_included_files()[0]); + } } $this->newLine();