This file contains 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 | |
use Illuminate\Database\Eloquent\Builder; | |
use Illuminate\Support\Arr; | |
/** | |
* Class DropUnsetAttributes will drop any fields contained in the model's $clearable | |
* array if they are not included in the attributes on mass-assignment (fill). | |
* | |
* @package Quirks\ModelTraits |
This file contains 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
" My cVim configuration |
This file contains 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 MyApp\Providers; | |
use Exception; | |
use Cartalyst\Sentry\Sentry; | |
use Cartalyst\Sentry\Users\UserInterface; | |
use Tymon\JWTAuth\Providers\Auth\AuthInterface; | |
class SentryAuthAdapter implements AuthInterface | |
{ | |
/** |