We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acb116b commit 31086cfCopy full SHA for 31086cf
composer-diff.php
@@ -33,15 +33,15 @@
33
}
34
35
36
-if (!defined('JBZOO_AUTOLOAD_FILE')) {
37
- fwrite(
38
- STDERR,
39
- 'You need to set up the project dependencies using Composer:' . PHP_EOL . PHP_EOL .
40
- ' composer install' . PHP_EOL . PHP_EOL .
41
- 'You can learn all about Composer on https://getcomposer.org/.' . PHP_EOL
+if (!\defined('JBZOO_AUTOLOAD_FILE')) {
+ \fwrite(
+ \STDERR,
+ 'You need to set up the project dependencies using Composer:' . \PHP_EOL . \PHP_EOL .
+ ' composer install' . \PHP_EOL . \PHP_EOL .
+ 'You can learn all about Composer on https://getcomposer.org/.' . \PHP_EOL,
42
);
43
44
- die(1);
+ exit(1);
45
46
47
require_once JBZOO_AUTOLOAD_FILE;
0 commit comments