Home
last modified time | relevance | path

Searched refs:fatal (Results 1 – 6 of 6) sorted by path

/dokuwiki/bin/
H A Ddwpage.php213 $this->fatal("$wiki_id does not yet exist");
221 $this->fatal("Directory " . dirname($localfile) . " does not exist");
225 $this->fatal("Attempt to check out file into data directory - not allowed");
232 $this->fatal("Unable to copy $wiki_fn to $localfile");
252 $this->fatal("$localfile does not exist");
256 $this->fatal("Cannot read from $localfile");
260 $this->fatal("Summary message required");
H A Dplugin.php47 $this->fatal('Command {cmd} not found.', ['cmd' => $argv[0]]);
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DREADME.md
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md94 ``error()`` (red) or ``fatal()`` (red). The latter will also exit the programm with a non-zero exit code.
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DBase.php95 set_exception_handler(array($this, 'fatal'));
231 if (!isset($this->loglevel[$level])) $this->fatal('Unknown log level');
247 if (!isset($this->loglevel[$level])) $this->fatal('Unknown log level');
252 * Exits the program on a fatal error
257 public function fatal($error, array $context = array())
188 public function fatal($error, array $context = array()) global() function in splitbrain\\phpcli\\Base
/dokuwiki/vendor/splitbrain/php-jsstrip/src/
H A DJSStrip.php74 if ($endC === false) $this->fatal('Found invalid /*..*/ comment');
85 if ($endNC === false) $this->fatal('Found invalid NOCOMPRESS comment');
107 if ($endC === false) $this->fatal('Invalid comment'); // not sure this can happen
239 * Helper to throw a fatal error
246 protected function fatal($msg) function in splitbrain\\JSStrip\\JSStrip