Skip to content

Commit

Permalink
Fixed code style and fresh composer.lock (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis authored Jan 21, 2024
1 parent acb116b commit 31086cf
Show file tree
Hide file tree
Showing 2 changed files with 631 additions and 737 deletions.
14 changes: 7 additions & 7 deletions composer-diff.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@
}
}

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

die(1);
exit(1);
}

require_once JBZOO_AUTOLOAD_FILE;
Expand Down
Loading

0 comments on commit 31086cf

Please sign in to comment.