mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 22:03:49 -07:00
fix(emoji): correct comment casing for Unicode emoji in EmojiFactory
Updated the comment in the EmojiFactory to use consistent casing for "Unicode" in the emoji definition method. This change improves code clarity and maintains consistency in documentation style.
This commit is contained in:
parent
c8656d7576
commit
3957929769
1 changed files with 2 additions and 2 deletions
|
@ -17,8 +17,8 @@ class EmojiFactory extends Factory
|
|||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
$emojis = ['😊', '😃', '😄', '😁', '😆', '😅', '🤣', '😂', '🙂', '🙃', '😉', '😊', '😇', '🥰', '😍', '🤩', '😘', '😗', '😚', '😙', '🥲', '😋', '😛', '😜', '🤪', '😝', '🤑', '🤗', '🤭', '🤫', '🤔'];
|
||||
$hasEmoji = $this->faker->boolean(80); // 80% chance of having unicode emoji
|
||||
$emojis = ['😊', '😃', '😄', '😁', '😆', '😅', '🤣', '😂', '🙂', '🙃', '😉', '😇', '🥰', '😍', '🤩', '😘', '😗', '😚', '😙', '🥲', '😋', '😛', '😜', '🤪', '😝', '🤑', '🤗', '🤭', '🤫', '🤔'];
|
||||
$hasEmoji = $this->faker->boolean(80); // 80% chance of having Unicode emoji
|
||||
|
||||
return [
|
||||
'title' => $this->faker->words(2, true),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue