Home
last modified time | relevance | path

Searched refs:code (Results 51 – 54 of 54) sorted by path

123

/dokuwiki/vendor/splitbrain/php-cli/src/
H A DBase.php259 $code = 0;
264 $code = $error->getCode();
268 if (!$code) {
269 $code = Exception::E_ANY;
273 exit($code);
H A DException.php8 * The code is used as exit code for the CLI tool. This should probably be extended. Many cases just fall back to the
9 * E_ANY code.
16 const E_ANY = -1; // no error code specified
25 * @param int $code The Exception code
28 public function __construct($message = "", $code = 0, \Exception $previous = null) argument
30 if (!$code) {
31 $code = self::E_ANY;
33 parent::__construct($message, $code,
[all...]
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A DLICENSE9 1. Redistributions of source code must retain the above copyright notice, this
H A DREADME.md3 This is a PHP port of Nick Galbreath's python tool [jsstrip.py](https://code.google.com/p/jsstrip/).
18 You'll have to convert your code to use ';' first.
43 You can skip Minification for parts of your code by surrounding it by special comments:

123