Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2. class Foo {
  3. use AuthenticatesUsers {
  4. getLogin as login;
  5. }
  6.  
  7. public function getLogin() {
  8. // Do my stuff
  9. return $this->login()->with('myvar', 'Hello World');
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement