Advertisement
Guest User

CompanyInterface

a guest
Apr 22nd, 2018
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Contracts;
  4.  
  5. use App\Models\Company;
  6.  
  7. interface CompanyInterface
  8. {
  9.     public function myCompany(): Company;
  10.  
  11.     public function upsert(Company $company, array $validated): Company;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement