Home
last modified time | relevance | path

Searched refs:error (Results 476 – 500 of 1814) sorted by relevance

1...<<11121314151617181920>>...73

/plugin/passpolicy/
H A Dhelper.php44 public $error = 0; variable in helper_plugin_passpolicy
172 $this->error = 0;
176 $this->error = helper_plugin_passpolicy::LENGTH_VIOLATION;
189 $this->error = helper_plugin_passpolicy::POOL_VIOLATION;
199 $this->error = helper_plugin_passpolicy::USERNAME_VIOLATION;
218 $this->error = helper_plugin_passpolicy::USERNAME_VIOLATION;
227 $this->error = helper_plugin_passpolicy::COMMON_VIOLATION;
233 $this->error = helper_plugin_passpolicy::LEAK_VIOLATION;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Zend/Sniffs/Files/
H A DClosingTagSniff.php66 $error = 'A closing tag is not permitted at the end of a PHP file';
67 $fix = $phpcsFile->addFixableError($error, $last, 'NotAllowed');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Arrays/
H A DDisallowShortArraySyntaxSniff.php55 $error = 'Short array syntax is not allowed';
56 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'Found');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/
H A DInnerFunctionsSniff.php77 $error = 'The use of inner functions is forbidden';
78 $phpcsFile->addError($error, $stackPtr, 'NotAllowed');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/PHP/
H A DSAPIUsageSniff.php72 $error = 'Use the PHP_SAPI constant instead of calling php_sapi_name()';
73 $phpcsFile->addError($error, $stackPtr, 'FunctionFound');
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnection.php270 if (isset($response['error']) === true) {
271 if ($response['error'] instanceof ConnectException || $response['error'] instanceof RingException) {
311 $exception = new TransportException($response['error']->getMessage());
339 // No error, deserialize
454 'error' => $exception->getMessage(),
574 $message = $response['error']->getMessage();
712 $this->log->error($exceptionText);
713 $this->log->error($exception->getTraceAsString());
741 "Unknown %d error fro
[all...]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/CodeAnalysis/
H A DUnnecessaryFinalModifierSniff.php88 $error = 'Unnecessary FINAL modifier in FINAL class';
89 $phpcsFile->addWarning($error, $next, 'Found');
H A DForLoopShouldBeWhileLoopSniff.php95 $error = 'This FOR loop can be simplified to a WHILE loop';
96 $phpcsFile->addWarning($error, $stackPtr, 'CanSimplify');
H A DUnconditionalIfStatementSniff.php97 $error = 'Avoid IF statements that are always true or false';
98 $phpcsFile->addWarning($error, $stackPtr, 'Found');
H A DEmptyStatementSniff.php100 $error = 'Empty %s statement detected';
101 $phpcsFile->addError($error, $stackPtr, 'Detected'.$name, array($name));
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/
H A DClassFileNameSniff.php72 $error = '%s name doesn\'t match filename; expected "%s %s"';
78 $phpcsFile->addError($error, $stackPtr, 'NoMatch', $data);
H A DLowercaseClassKeywordsSniff.php71 $error = '%s keyword must be lowercase; expected "%s" but found "%s"';
78 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'FoundUppercase', $data);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/Files/
H A DByteOrderMarkSniff.php82 $error = 'File contains %s byte order mark, which may corrupt your application';
83 $phpcsFile->addError($error, $stackPtr, 'Found', $errorData);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Functions/
H A DFunctionDuplicateArgumentSniff.php67 $error = 'Variable "%s" appears more than once in function declaration';
69 $phpcsFile->addError($error, $i, 'Found', $data);
/plugin/batchedit/
H A Dengine.php383 catch (Exception $error) {
386 if ($error instanceof BatcheditMatchApplyException) {
387 $error = new BatcheditMatchApplyException($this->id . $error->getArguments()[1]);
390 throw $error;
559 private $error; variable in BatcheditSession
576 $this->error = NULL;
649 public function setError($error) { argument
650 $this->error = new BatcheditErrorMessage($error
[all...]
/plugin/move/action/
H A Drename.php121 $error = $MSG[0]; // first error
123 $error = $this->getLang('cantrename');
125 echo $JSON->encode(array('error' => $error));
165 $response['error'] = $this->getLang('notallowed');
176 $response['error'] = sprintf($this->getLang('mediamoveerror'), $src);
179 $response['error'] .= ' ' . $msg['msg'];
/plugin/zip/pear/File/Archive/Reader/
H A DArchive.php68 if (!$this->sourceOpened && ($error = $this->source->next()) !== true) {
69 return $error;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Functions/
H A DValidDefaultValueSniff.php89 $error = 'Arguments with default values must be at the end of the argument list';
90 $phpcsFile->addError($error, $param['token'], 'NotAtEnd');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/
H A DObjectInstantiationSniff.php74 $error = 'New objects must be assigned to a variable';
75 $phpcsFile->addError($error, $stackPtr, 'NotAssigned');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/PHP/
H A DReturnFunctionValueSniff.php66 … $error = 'The result of a function call should be assigned to a variable before being returned';
67 $phpcsFile->addWarning($error, $stackPtr, 'NotAssigned');
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/MySource/Sniffs/CSS/
H A DBrowserSpecificStylesSniff.php93 $error = 'Browser-specific styles are not allowed';
94 $phpcsFile->addError($error, $stackPtr, 'ForbiddenStyle');
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DTelegramBotHandler.php251 throw new RuntimeException('Telegram API error. Description: No response');
256 … throw new RuntimeException('Telegram API error. Description: ' . $result['description']);
/plugin/webdav/vendor/sabre/http/lib/
H A DClient.php178 * @param callable $error
181 … function sendAsync(RequestInterface $request, callable $success = null, callable $error = null) { argument
184 $this->sendAsyncInternal($request, $success, $error);
543 * @param callable $error
546 …sendAsyncInternal(RequestInterface $request, callable $success, callable $error, $retryCount = 0) { argument
560 $error,
/plugin/davcal/vendor/sabre/http/lib/
H A DClient.php176 * @param callable $error
179 … function sendAsync(RequestInterface $request, callable $success = null, callable $error = null) { argument
182 $this->sendAsyncInternal($request, $success, $error);
541 * @param callable $error
544 …sendAsyncInternal(RequestInterface $request, callable $success, callable $error, $retryCount = 0) { argument
558 $error,
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/
H A DLowercaseDeclarationSniff.php72 $error = '%s keyword must be lowercase; expected "%s" but found "%s"';
79 $fix = $phpcsFile->addFixableError($error, $stackPtr, 'FoundUppercase', $data);

1...<<11121314151617181920>>...73