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
# top-most EditorConfig file | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_style = space | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
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\Criteria; | |
use Prettus\Repository\Contracts\CriteriaInterface; | |
use Prettus\Repository\Contracts\RepositoryInterface; | |
use Prettus\Repository\Criteria\RequestCriteria; | |
/** | |
* Class BaseCriteria |
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\Illuminate\Auth; | |
use Illuminate\Auth\Access\Gate; | |
use Illuminate\Contracts\Auth\Access\Gate as GateContract; | |
use Illuminate\Auth\AuthServiceProvider as BaseAuthServiceProvider; | |
class AuthServiceProvider extends BaseAuthServiceProvider | |
{ |