Mercurial > hg > isophonics-drupal-site
comparison vendor/squizlabs/php_codesniffer/src/Exceptions/DeepExitException.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
1 <?php | |
2 /** | |
3 * An exception thrown by PHP_CodeSniffer when it wants to exit from somewhere not in the main runner. | |
4 * | |
5 * Allows the runner to return an exit code instead of putting exit codes elsewhere | |
6 * in the source code. | |
7 * | |
8 * @author Greg Sherwood <gsherwood@squiz.net> | |
9 * @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600) | |
10 * @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence | |
11 */ | |
12 | |
13 namespace PHP_CodeSniffer\Exceptions; | |
14 | |
15 class DeepExitException extends \Exception | |
16 { | |
17 | |
18 }//end class |