From a5f00c28283fb85b640bd06903d1932129d364f5 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Sun, 14 Apr 2024 11:47:00 +0000 Subject: [PATCH] Apply fixes from StyleCI --- app/Models/Champion.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/Models/Champion.php b/app/Models/Champion.php index ff5d510..5ef5173 100644 --- a/app/Models/Champion.php +++ b/app/Models/Champion.php @@ -101,16 +101,17 @@ class Champion extends Model public function getChampionImageAttribute(): string { - return 'https://raw.communitydragon.org/pbe/plugins/rcp-be-lol-game-data/global/default/v1/champion-splashes/' . $this->champion_id . '/' . $this->champion_id . '000.jpg'; + return 'https://raw.communitydragon.org/pbe/plugins/rcp-be-lol-game-data/global/default/v1/champion-splashes/'.$this->champion_id.'/'.$this->champion_id.'000.jpg'; } + public function getChampionImageTileAttribute(): string { - return 'https://raw.communitydragon.org/pbe/plugins/rcp-be-lol-game-data/global/default/v1/champion-tiles/' . $this->champion_id . '/' . $this->champion_id . '000.jpg'; + return 'https://raw.communitydragon.org/pbe/plugins/rcp-be-lol-game-data/global/default/v1/champion-tiles/'.$this->champion_id.'/'.$this->champion_id.'000.jpg'; } public function getChampionSquareImageAttribute(): string { - return 'https://raw.communitydragon.org/pbe/plugins/rcp-be-lol-game-data/global/default/v1/champion-icons/' . $this->champion_id . '.png'; + return 'https://raw.communitydragon.org/pbe/plugins/rcp-be-lol-game-data/global/default/v1/champion-icons/'.$this->champion_id.'.png'; } public function getChampionAbilityIconQAttribute(): string