mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
8f04342fc2
Signed-off-by: snipe <snipe@snipe.net>
53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
use App\Models\User;
|
|
|
|
class NormalizeUserNames extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'snipeit:normalize-names';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Normalizes weirdly formatted names as first-letter upercased';
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function handle()
|
|
{
|
|
|
|
$users = User::get();
|
|
$this->info($users->count() . ' users');
|
|
|
|
foreach ($users as $user) {
|
|
$user->first_name = ucwords(strtolower($user->first_name));
|
|
$user->last_name = ucwords(strtolower($user->last_name));
|
|
$user->email = strtolower($user->email);
|
|
$user->save();
|
|
}
|
|
}
|
|
}
|