mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
style: laravel pint lint
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\SkinChroma;
|
||||
use App\Http\Requests\StoreSkinChromaRequest;
|
||||
use App\Http\Requests\UpdateSkinChromaRequest;
|
||||
use App\Models\SkinChroma;
|
||||
|
||||
class SkinChromaController extends Controller
|
||||
{
|
||||
|
||||
@@ -35,8 +35,8 @@ class Champion extends Model
|
||||
{
|
||||
return [
|
||||
'slug' => [
|
||||
'source' => 'name'
|
||||
]
|
||||
'source' => 'name',
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
@@ -42,8 +42,8 @@ class ChampionSkin extends Model
|
||||
{
|
||||
return [
|
||||
'slug' => [
|
||||
'source' => 'skin_name'
|
||||
]
|
||||
'source' => 'skin_name',
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
@@ -26,10 +26,11 @@ class SkinChroma extends Model
|
||||
public function sluggable(): array
|
||||
{
|
||||
$slug = $this->chroma_name.' '.$this->skin_name;
|
||||
|
||||
return [
|
||||
'slug' => [
|
||||
'source' => $slug
|
||||
]
|
||||
'source' => $slug,
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
@@ -4,7 +4,6 @@ namespace App\Policies;
|
||||
|
||||
use App\Models\SkinChroma;
|
||||
use App\Models\User;
|
||||
use Illuminate\Auth\Access\Response;
|
||||
|
||||
class SkinChromaPolicy
|
||||
{
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
/**
|
||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
use App\Models\Champion;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
|
||||
class ChampionSeeder extends Seeder
|
||||
@@ -13,7 +13,7 @@ class ChampionSeeder extends Seeder
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
$championDataUrl = "http://cdn.merakianalytics.com/riot/lol/resources/latest/en-US/champions.json";
|
||||
$championDataUrl = 'http://cdn.merakianalytics.com/riot/lol/resources/latest/en-US/champions.json';
|
||||
$championData = json_decode(file_get_contents($championDataUrl), true);
|
||||
|
||||
foreach ($championData as $champion) {
|
||||
@@ -55,6 +55,7 @@ class ChampionSeeder extends Seeder
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\Champion;
|
||||
use App\Models\ChampionSkin;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
@@ -14,7 +13,7 @@ class ChampionSkinSeeder extends Seeder
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
$championDataUrl = "http://cdn.merakianalytics.com/riot/lol/resources/latest/en-US/champions.json";
|
||||
$championDataUrl = 'http://cdn.merakianalytics.com/riot/lol/resources/latest/en-US/champions.json';
|
||||
$championData = json_decode(file_get_contents($championDataUrl), true);
|
||||
|
||||
foreach ($championData as $champion) {
|
||||
@@ -23,11 +22,11 @@ class ChampionSkinSeeder extends Seeder
|
||||
$skinExists = ChampionSkin::where('full_skin_id', $skinId)->first();
|
||||
|
||||
// Original is just the base skin (so, none) so we don't need to store it.
|
||||
if ($skin['name'] === "Original") {
|
||||
if ($skin['name'] === 'Original') {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($skin['cost'] == "Special") {
|
||||
if ($skin['cost'] == 'Special') {
|
||||
$skin['cost'] = 99999;
|
||||
}
|
||||
|
||||
@@ -77,6 +76,7 @@ class ChampionSkinSeeder extends Seeder
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,9 +2,8 @@
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
use App\Models\SkinChroma;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\Log;
|
||||
|
||||
class SkinChromaSeeder extends Seeder
|
||||
@@ -14,16 +13,18 @@ class SkinChromaSeeder extends Seeder
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
$championDataUrl = "http://cdn.merakianalytics.com/riot/lol/resources/latest/en-US/champions.json";
|
||||
$championDataUrl = 'http://cdn.merakianalytics.com/riot/lol/resources/latest/en-US/champions.json';
|
||||
$championData = json_decode(file_get_contents($championDataUrl), true);
|
||||
|
||||
foreach ($championData as $champion) {
|
||||
foreach ($champion['skins'] as $skin) {
|
||||
if ($skin['name'] === "Original") {
|
||||
if ($skin['name'] === 'Original') {
|
||||
continue;
|
||||
}
|
||||
foreach ($skin['chromas'] as $chroma) {
|
||||
if ($chroma === null) continue; // To address: https://github.com/meraki-analytics/lolstaticdata/issues/71
|
||||
if ($chroma === null) {
|
||||
continue;
|
||||
} // To address: https://github.com/meraki-analytics/lolstaticdata/issues/71
|
||||
|
||||
$chromaId = $chroma['id'];
|
||||
|
||||
@@ -61,6 +62,7 @@ class SkinChromaSeeder extends Seeder
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user