/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
cakedc
/
auth
/
src
/
Authentication
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakedc/auth/src/Authentication
mkdir
upload
Name
Size
Mode
Actions
AuthenticationService.php
6893
0644
edit
dl
rm
DefaultOneTimePasswordAuthenticationChecker.php
1581
0644
edit
dl
rm
DefaultU2fAuthenticationChecker.php
1137
0644
edit
dl
rm
DefaultWebauthn2fAuthenticationChecker.php
1159
0644
edit
dl
rm
Failure.php
1609
0644
edit
dl
rm
FailureInterface.php
782
0644
edit
dl
rm
OneTimePasswordAuthenticationCheckerFactory.php
1259
0644
edit
dl
rm
OneTimePasswordAuthenticationCheckerInterface.php
834
0644
edit
dl
rm
U2fAuthenticationCheckerFactory.php
1163
0644
edit
dl
rm
U2fAuthenticationCheckerInterface.php
822
0644
edit
dl
rm
Webauthn2fAuthenticationCheckerFactory.php
1200
0644
edit
dl
rm
Webauthn2fAuthenticationCheckerInterface.php
829
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakedc/auth/src/Authentication/FailureInterface.php
(782B)
<?php declare(strict_types=1); /** * Copyright 2010 - 2019, Cake Development Corporation (https://www.cakedc.com) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * @copyright Copyright 2010 - 2019, Cake Development Corporation (https://www.cakedc.com) * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ namespace CakeDC\Auth\Authentication; interface FailureInterface { /** * Returns failed authenticator. * * @return \Authentication\Authenticator\AuthenticatorInterface */ public function getAuthenticator(); /** * Returns failed result. * * @return \Authentication\Authenticator\ResultInterface */ public function getResult(); }
Save