Apply Laravel coding style

Shift automatically applies the Laravel coding style - which uses the PSR-12 coding style as a base with some minor additions.

You may customize the code style applied by configuring [Pint](https://laravel.com/docs/pint), [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer), or [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) for your project root.

For more information on customizing the code style applied by Shift, [watch this short video](https://laravelshift.com/videos/shift-code-style).
This commit is contained in:
Shift
2023-02-19 16:18:46 +00:00
committed by HolgerHatGarKeineNode
parent a15ca4a2bc
commit 5776b01d15
333 changed files with 4915 additions and 4967 deletions

View File

@@ -2,48 +2,48 @@
return [
// Model which will be having points, generally it will be User
'payee_model' => '\App\User',
'payee_model' => '\App\User',
// Reputation model
'reputation_model' => '\QCod\Gamify\Reputation',
'reputation_model' => '\QCod\Gamify\Reputation',
// Allow duplicate reputation points
'allow_reputation_duplicate' => true,
'allow_reputation_duplicate' => true,
// Broadcast on private channel
'broadcast_on_private_channel' => false,
// Channel name prefix, user id will be suffixed
'channel_name' => 'user.reputation.',
'channel_name' => 'user.reputation.',
// Badge model
'badge_model' => '\QCod\Gamify\Badge',
'badge_model' => '\QCod\Gamify\Badge',
// Where all badges icon stored
'badge_icon_folder' => 'images/badges/',
'badge_icon_folder' => 'images/badges/',
// Extention of badge icons
'badge_icon_extension' => '.svg',
'badge_icon_extension' => '.svg',
// All the levels for badge
'badge_levels' => [
'No-Coiner 😱' => 0,
'Shitcoiner 💩' => 0,
'Trader 🎢' => 0,
'Im Rabbit hole 🐰🕳' => 0,
'DCA 🗓' => 0,
'badge_levels' => [
'No-Coiner 😱' => 0,
'Shitcoiner 💩' => 0,
'Trader 🎢' => 0,
'Im Rabbit hole 🐰🕳' => 0,
'DCA 🗓' => 0,
'Not your keys, not your coins 🗝' => 0,
'Wale 🐋' => 0,
'Running a Node 📡' => 0,
'Lightning-User ⚡️' => 0,
'Miner ⛏️' => 0,
'Solo-Miner 🎲' => 0,
'Orange Pilled 💊' => 1,
'Cyber Hornet 🐝' => 21000, // 210.000
'Toxic Maximalist 🧪' => 21000, // 210.000
'Satoshi Nakamoto 🧠' => 21000000, // 21.000.000
'Wale 🐋' => 0,
'Running a Node 📡' => 0,
'Lightning-User ⚡️' => 0,
'Miner ⛏️' => 0,
'Solo-Miner 🎲' => 0,
'Orange Pilled 💊' => 1,
'Cyber Hornet 🐝' => 21000, // 210.000
'Toxic Maximalist 🧪' => 21000, // 210.000
'Satoshi Nakamoto 🧠' => 21000000, // 21.000.000
],
// Default level
'badge_default_level' => 0
'badge_default_level' => 0,
];