Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. namespace App\Services\ExtendedClient\Shared\Concerns;
  5.  
  6.  
  7. trait CanCommunicate
  8. {
  9. /**
  10. * @param string $attribute
  11. * @return bool
  12. */
  13. abstract protected function _hasAttribute(string $attribute): bool;
  14.  
  15. /**
  16. * @return mixed
  17. */
  18. abstract protected function _getModel();
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement