Skip to content

Commit

Permalink
chore: code formatting updates
Browse files Browse the repository at this point in the history
  • Loading branch information
CS76 committed Dec 2, 2024
1 parent 6fd1a71 commit d3fb756
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Console/Commands/AssignCollectionsIdentifiers.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ public function handle()
public function generateIdentifier($index)
{
$prefix = (env('APP_ENV') === 'production') ? 'CNPC' : 'CNPC_DEV';
return $prefix . str_pad($index, 6, '0', STR_PAD_LEFT);
}

return $prefix.str_pad($index, 6, '0', STR_PAD_LEFT);
}

public function fetchLastIndex()
{
Expand Down

0 comments on commit d3fb756

Please sign in to comment.