-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from Zlimon/feature/refactor
Project Refactor
- Loading branch information
Showing
976 changed files
with
9,965 additions
and
7,313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<?php | ||
|
||
namespace App\Boss; | ||
|
||
use Illuminate\Database\Eloquent\Model; | ||
|
||
/** | ||
* App\Boss\Nightmare | ||
* | ||
* @property int $id | ||
* @property int $account_id | ||
* @property int $kill_count | ||
* @property int $rank | ||
* @property int $obtained | ||
* @property int $little_nightmare | ||
* @property int $inquisitors_mace | ||
* @property int $inquisitors_great_helm | ||
* @property int $inquisitors_hauberk | ||
* @property int $inquisitors_plateskirt | ||
* @property int $nightmare_staff | ||
* @property int $volatile_orb | ||
* @property int $harmonised_orb | ||
* @property int $eldritch_orb | ||
* @property int $jar_of_dreams | ||
* @property \Illuminate\Support\Carbon|null $created_at | ||
* @property \Illuminate\Support\Carbon|null $updated_at | ||
* @property-read \App\Account $account | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare newModelQuery() | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare newQuery() | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare query() | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereAccountId($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereCreatedAt($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereEldritchOrb($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereHarmonisedOrb($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereId($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereInquisitorsGreatHelm($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereInquisitorsHauberk($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereInquisitorsMace($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereInquisitorsPlateskirt($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereJarOfDreams($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereKillCount($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereLittleNightmare($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereNightmareStaff($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereObtained($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereRank($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereUpdatedAt($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|Nightmare whereVolatileOrb($value) | ||
* @mixin \Eloquent | ||
*/ | ||
class Nightmare extends Model | ||
{ | ||
protected $table = 'nightmare'; | ||
|
||
protected $fillable = [ | ||
'obtained', | ||
'kill_count', | ||
'little_nightmare', | ||
'inquisitors_mace', | ||
'inquisitors_great_helm', | ||
'inquisitors_hauberk', | ||
'inquisitors_plateskirt', | ||
'nightmare_staff', | ||
'volatile_orb', | ||
'harmonised_orb', | ||
'eldritch_orb', | ||
'jar_of_dreams', | ||
]; | ||
|
||
protected $hidden = ['user_id']; | ||
|
||
public function account() | ||
{ | ||
return $this->belongsTo(\App\Account::class); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
|
||
namespace App\Boss; | ||
|
||
use Illuminate\Database\Eloquent\Model; | ||
|
||
/** | ||
* App\Boss\TzKalZuk | ||
* | ||
* @property int $id | ||
* @property int $account_id | ||
* @property int $kill_count | ||
* @property int $rank | ||
* @property int $obtained | ||
* @property int $jal-nib-rek | ||
* @property int $infernal_cape | ||
* @property \Illuminate\Support\Carbon|null $created_at | ||
* @property \Illuminate\Support\Carbon|null $updated_at | ||
* @property-read \App\Account $account | ||
* @method static \Illuminate\Database\Eloquent\Builder|TzKalZuk newModelQuery() | ||
* @method static \Illuminate\Database\Eloquent\Builder|TzKalZuk newQuery() | ||
* @method static \Illuminate\Database\Eloquent\Builder|TzKalZuk query() | ||
* @method static \Illuminate\Database\Eloquent\Builder|TzKalZuk whereAccountId($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|TzKalZuk whereCreatedAt($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|TzKalZuk whereId($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|TzKalZuk whereInfernalCape($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|TzKalZuk whereJalNibRek($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|TzKalZuk whereKillCount($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|TzKalZuk whereObtained($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|TzKalZuk whereRank($value) | ||
* @method static \Illuminate\Database\Eloquent\Builder|TzKalZuk whereUpdatedAt($value) | ||
* @mixin \Eloquent | ||
*/ | ||
class TzKalZuk extends Model | ||
{ | ||
protected $table = 'tzkal_zuk'; | ||
|
||
protected $fillable = [ | ||
'obtained', | ||
'kill_count', | ||
'jal-nib-rek', | ||
'infernal_cape', | ||
]; | ||
|
||
protected $hidden = ['user_id']; | ||
|
||
public function account() | ||
{ | ||
return $this->belongsTo(\App\Account::class); | ||
} | ||
} |
Oops, something went wrong.