Skip to content

Commit

Permalink
chore: command output format when success
Browse files Browse the repository at this point in the history
  • Loading branch information
patiencemanzen committed Feb 8, 2024
1 parent 5d2baaa commit c23c8ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/InstallFiltan.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function handle() {
$this->getFileInitialContents($namespace, $baseName)
);

$this->info("{$namespace}\{$baseName} Create successfully");
$this->info($namespace."\\".$baseName." Created successfully");
}

/**
Expand All @@ -90,7 +90,7 @@ class {$className} extends QueryFilter {
* @param \\Illuminate\Database\Eloquent\Builder \$query
* @return \\Illuminate\Database\Eloquent\Builder
*/
public function query(\$query) {
public function query(string \$query) {
// Implement your filter logic here
// Example: $builder('column_name', 'operator', 'value');
}
Expand Down

0 comments on commit c23c8ab

Please sign in to comment.