for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: Alexandre
* Date: 08/03/2018
* Time: 21:17
*/
namespace OAuth2\Extensions\PKCE\Credentials;
* Class CodeChallenge
* @package OAuth2\Extensions\PKCE\Credentials
* @deprecated
class CodeChallenge implements CodeChallengeInterface
OAuth2\Extensions\PKCE\C...\CodeChallengeInterface
If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated annotation
ignore-deprecated
class CodeChallenge implements /** @scrutinizer ignore-deprecated */ CodeChallengeInterface
This interface has been deprecated. The supplier of the interface has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the interface will be removed and what other interface to use instead.
{
protected $codeChallenge;
protected $codeChallengeMethod;
public function __construct(string $codeChallenge, string $codeChallengeMethod)
$this->codeChallenge = $codeChallenge;
$this->codeChallengeMethod = $codeChallengeMethod;
}
* @return mixed
public function getCodeChallenge(): string
return $this->codeChallenge;
* @return string
public function getCodeChallengeMethod(): string
return $this->codeChallengeMethod;
This interface has been deprecated. The supplier of the interface has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the interface will be removed and what other interface to use instead.