PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Contracts
/
Auth
<?php namespace Illuminate\Contracts\Auth; interface SupportsBasicAuth { /** * Attempt to authenticate using HTTP Basic Auth. * * @param string $field * @param array $extraConditions * @return \Symfony\Component\HttpFoundation\Response|null */ public function basic($field = 'email', $extraConditions = []); /** * Perform a stateless HTTP Basic login attempt. * * @param string $field * @param array $extraConditions * @return \Symfony\Component\HttpFoundation\Response|null */ public function onceBasic($field = 'email', $extraConditions = []); }
[-] Guard.php
[edit]
[+]
..
[-] SupportsBasicAuth.php
[edit]
[-] Authenticatable.php
[edit]
[-] PasswordBroker.php
[edit]
[+]
Middleware
[-] UserProvider.php
[edit]
[-] StatefulGuard.php
[edit]
[-] CanResetPassword.php
[edit]
[-] MustVerifyEmail.php
[edit]
[+]
Access
[-] Factory.php
[edit]
[-] PasswordBrokerFactory.php
[edit]