Last active
May 5, 2020 01:31
-
-
Save anvodev/72502dfc2afb5a3810c650ccdc1ea7f2 to your computer and use it in GitHub Desktop.
A Service to get lucky number
This file contains hidden or 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
| <?php | |
| // src/Lucky.php | |
| namespace App; | |
| class Lucky | |
| { | |
| public function getNumber() | |
| { | |
| return random_int(1,100); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment