Apply fixes from StyleCI

This commit is contained in:
Rico
2023-11-02 13:32:24 +00:00
committed by StyleCI Bot
parent 9f419ca0ca
commit 3fffe6a6df

View File

@@ -9,9 +9,8 @@
* @author Barry vd. Heuvel <barryvdh@gmail.com> * @author Barry vd. Heuvel <barryvdh@gmail.com>
*/ */
namespace App\Models{ namespace App\Models{
/** /**
* App\Models\Champion * App\Models\Champion
* *
* @property int $id * @property int $id
@@ -62,11 +61,13 @@ namespace App\Models{
* @method static \Illuminate\Database\Eloquent\Builder|Champion whereTitle($value) * @method static \Illuminate\Database\Eloquent\Builder|Champion whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|Champion whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Champion whereUpdatedAt($value)
*/ */
class Champion extends \Eloquent {} class Champion extends \Eloquent
{
}
} }
namespace App\Models{ namespace App\Models{
/** /**
* App\Models\ChampionSkin * App\Models\ChampionSkin
* *
* @property int $id * @property int $id
@@ -122,11 +123,13 @@ namespace App\Models{
* @method static \Illuminate\Database\Eloquent\Builder|ChampionSkin whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|ChampionSkin whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ChampionSkin whereVoiceActor($value) * @method static \Illuminate\Database\Eloquent\Builder|ChampionSkin whereVoiceActor($value)
*/ */
class ChampionSkin extends \Eloquent {} class ChampionSkin extends \Eloquent
{
}
} }
namespace App\Models{ namespace App\Models{
/** /**
* App\Models\SkinChroma * App\Models\SkinChroma
* *
* @property int $id * @property int $id
@@ -152,11 +155,13 @@ namespace App\Models{
* @method static \Illuminate\Database\Eloquent\Builder|SkinChroma whereSkinName($value) * @method static \Illuminate\Database\Eloquent\Builder|SkinChroma whereSkinName($value)
* @method static \Illuminate\Database\Eloquent\Builder|SkinChroma whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|SkinChroma whereUpdatedAt($value)
*/ */
class SkinChroma extends \Eloquent {} class SkinChroma extends \Eloquent
{
}
} }
namespace App\Models{ namespace App\Models{
/** /**
* App\Models\User * App\Models\User
* *
* @property int $id * @property int $id
@@ -184,6 +189,7 @@ namespace App\Models{
* @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value) * @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value)
*/ */
class User extends \Eloquent {} class User extends \Eloquent
{
}
} }