Skip to content

Commit 36c1254

Browse files
committed
formatting
1 parent 99b021e commit 36c1254

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

ibis

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ use Ibis\Commands\SampleCommand;
77
use Ibis\Commands\SortContentCommand;
88
use Symfony\Component\Console\Application;
99

10-
require file_exists(__DIR__.'/vendor/autoload.php') ? __DIR__.'/vendor/autoload.php' : __DIR__.'/../../autoload.php';
10+
if (file_exists(__DIR__.'/../../autoload.php')) {
11+
require __DIR__.'/../../autoload.php';
12+
} else {
13+
require __DIR__.'/vendor/autoload.php';
14+
}
1115

1216
/**
1317
* Start the console application.

stubs/ibis.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
/**
1616
* The list of fonts to be used in the different themes.
1717
*/
18-
'fonts' => [],
18+
'fonts' => [
19+
// 'calibri' => 'Calibri-Regular.ttf',
20+
// 'times' => 'times-regular.ttf',
21+
],
1922

2023
/**
2124
* Page ranges to be used with the sample command.

0 commit comments

Comments
 (0)