File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Contracts/Auth
Upload
[..]
Access/
Rename
Del
Authenticatable.php (1.07 KB)
Edit
Rename
Del
CanResetPassword.php (414 B)
Edit
Rename
Del
Factory.php (482 B)
Edit
Rename
Del
Middleware/
Rename
Del
MustVerifyEmail.php (805 B)
Edit
Rename
Del
PasswordBroker.php (1.26 KB)
Edit
Rename
Del
StatefulGuard.php (1.5 KB)
Edit
Rename
Del
SupportsBasicAuth.php (635 B)
Edit
Rename
Del
UserProvider.php (1.79 KB)
Edit
Rename
Del
Edit: SupportsBasicAuth.php
<?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 = []); }
Simpan