Skip to content

Commit 73e8910

Browse files
committed
set project purpose to unknown if not set
1 parent 7ea7e41 commit 73e8910

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Console/InstallCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ protected function findGuidelines(): Collection
130130
{
131131
// TODO: Just move to blade views and compact public properties?
132132
$composed = collect(['core' => $this->guideline('core.md', [
133-
'{project.purpose}' => $this->projectPurpose,
133+
'{project.purpose}' => $this->projectPurpose ?: 'Unknown',
134134
// TODO: Add package info, php version, laravel version, existing approaches, directory structure, models? General Laravel guidance that applies to all projects somehow? 'Follow existing conventions - if you are creating or editing a file, check sibling files for structure/approach/naming
135135
// TODO: Add project structure / relevant models / etc.. ? Kind of like Claude's /init, but for every Laravel developer regardless of IDE ? But if they already have that in Claude.md then that's gonna be doubling up and wasting tokens
136136
])]);
@@ -360,7 +360,7 @@ private function intro()
360360
private function outro()
361361
{
362362
outro('All done. Enjoy the boost 🚀');
363-
outro('Get the most out of Boost by visiting https://boost.laravel.com/installed');
363+
outro('Get the most out of Boost by visiting https://boost.laravel.com/installed'); // TODO: Pass info on what we did so it can show specific help
364364
}
365365

366366
protected function projectPurpose(): string

0 commit comments

Comments
 (0)