Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
themsaid committed Nov 4, 2020
1 parent 99b021e commit 36c1254
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion ibis
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ use Ibis\Commands\SampleCommand;
use Ibis\Commands\SortContentCommand;
use Symfony\Component\Console\Application;

require file_exists(__DIR__.'/vendor/autoload.php') ? __DIR__.'/vendor/autoload.php' : __DIR__.'/../../autoload.php';
if (file_exists(__DIR__.'/../../autoload.php')) {
require __DIR__.'/../../autoload.php';
} else {
require __DIR__.'/vendor/autoload.php';
}

/**
* Start the console application.
Expand Down
5 changes: 4 additions & 1 deletion stubs/ibis.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
/**
* The list of fonts to be used in the different themes.
*/
'fonts' => [],
'fonts' => [
// 'calibri' => 'Calibri-Regular.ttf',
// 'times' => 'times-regular.ttf',
],

/**
* Page ranges to be used with the sample command.
Expand Down

0 comments on commit 36c1254

Please sign in to comment.