Skip to content

Instantly share code, notes, and snippets.

@anvodev
Last active May 5, 2020 01:31
Show Gist options
  • Select an option

  • Save anvodev/72502dfc2afb5a3810c650ccdc1ea7f2 to your computer and use it in GitHub Desktop.

Select an option

Save anvodev/72502dfc2afb5a3810c650ccdc1ea7f2 to your computer and use it in GitHub Desktop.
A Service to get lucky number
<?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