Skip to content

Instantly share code, notes, and snippets.

@elishaukpong
Created January 2, 2023 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elishaukpong/4850b7e5eb3d20f153fec8965e823946 to your computer and use it in GitHub Desktop.
Save elishaukpong/4850b7e5eb3d20f153fec8965e823946 to your computer and use it in GitHub Desktop.
<?php
namespace App\Services;
class Compliment
{
public function endOfYearWish(): string
{
return "The last year was amazing, thank you for being part of it!";
}
public function newYearWish(): string
{
return "Happy New Year";
}
public function randomWish(string $wish): string
{
return "Your wish:" .$wish;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment