Skip to content

Instantly share code, notes, and snippets.

@pix-art
Last active April 14, 2016 12:44
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 pix-art/1725da6a13188a87ba6978401507ddc4 to your computer and use it in GitHub Desktop.
Save pix-art/1725da6a13188a87ba6978401507ddc4 to your computer and use it in GitHub Desktop.
How to write complex function
<?php
class CourseService {
...
public function signUp(SmartCode $code, User $user)
{
// 1. Check if the code is valid
// 2. Check if the user already has a code for this course
// 3. Register the code
// 4. Enroll the user with his code
// 5. Return enrollment
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment