Skip to content

Commit 31086cf

Browse files
authored
Fixed code style and fresh composer.lock (#32)
1 parent acb116b commit 31086cf

File tree

2 files changed

+631
-737
lines changed

2 files changed

+631
-737
lines changed

composer-diff.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
}
3434
}
3535

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
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,
4242
);
4343

44-
die(1);
44+
exit(1);
4545
}
4646

4747
require_once JBZOO_AUTOLOAD_FILE;

0 commit comments

Comments
 (0)