Skip to content

Instantly share code, notes, and snippets.

<?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
{
<?php
namespace App\Criteria;
use Prettus\Repository\Contracts\CriteriaInterface;
use Prettus\Repository\Contracts\RepositoryInterface;
use Prettus\Repository\Criteria\RequestCriteria;
/**
* Class BaseCriteria
@mvpasarel
mvpasarel / .editorconfig
Created October 27, 2016 08:34
General setup
# 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