1 | <?php |
||
26 | class Misconfigured extends Unreachable |
||
27 | { |
||
28 | private const ERRORS = [ |
||
29 | CURLE_SSL_ENGINE_NOTFOUND, CURLE_OUT_OF_MEMORY, |
||
30 | CURLE_SSL_ENGINE_SETFAILED, CURLE_READ_ERROR, CURLE_BAD_FUNCTION_ARGUMENT, |
||
31 | CURLE_BAD_PASSWORD_ENTERED, CURLE_UNSUPPORTED_PROTOCOL, CURLE_LIBRARY_NOT_FOUND, |
||
32 | CURLE_URL_MALFORMAT, CURLE_MALFORMAT_USER, CURLE_URL_MALFORMAT_USER, |
||
33 | CURLE_FAILED_INIT, CURLE_FUNCTION_NOT_FOUND, CURLE_SSL_CERTPROBLEM, |
||
34 | CURLE_FILE_COULDNT_READ_FILE, CURLE_SSL_CIPHER, CURLE_FILESIZE_EXCEEDED |
||
35 | ]; |
||
36 | |||
37 | /** |
||
38 | * Determines whether the code returned from cURL is one this class supports. |
||
39 | * |
||
40 | * @param $code - The code |
||
41 | * @return - whether this class should be used |
||
|
|||
42 | */ |
||
43 | public static function isUsable(int $code) : bool |
||
47 | } |
||
48 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.