Skip to content

Instantly share code, notes, and snippets.

@juniorb2ss
Created June 6, 2016 22:08
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 juniorb2ss/60f20622d347891f215e1d11e4a40b88 to your computer and use it in GitHub Desktop.
Save juniorb2ss/60f20622d347891f215e1d11e4a40b88 to your computer and use it in GitHub Desktop.
<?php
class UserRepository {
/**
* Create new user in database
* @return \App\User User Instance
*/
public static function firstOrCreate(){
// logic
return User::firstOrCreate([
'github_id', $githubUser->id
], ['avatar' => $githubUser->avatar]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment