Created
March 5, 2016 06:23
-
-
Save vinicius73/3a863c6e35bc2f4d4625 to your computer and use it in GitHub Desktop.
Tenant UsersRepository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Domains\Tenants\Repositories\Users; | |
use App\Domains\Users\Repositories\UsersRepository as OriginalUsersRepository; | |
use App\Domains\Tenants\Repositories\Traits\RegularTenantRepository; | |
class UsersRepository extends OriginalUsersRepository | |
{ | |
use RegularTenantRepository; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment