| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class SocialiteAuthUserCriteria implements CriteriaInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var \Illuminate\Http\Request |
||
| 26 | */ |
||
| 27 | protected $request; |
||
| 28 | |||
| 29 | public function __construct(SocialiteAuthRequest $request) |
||
| 30 | { |
||
| 31 | $this->request = $request; |
||
| 32 | } |
||
| 33 | |||
| 34 | public function apply($model, RepositoryInterface $repository) |
||
| 41 | } |
||
| 42 | } |
||
| 43 |