Skip to content

Commit e2ea08b

Browse files
committed
Apply fixes from StyleCI
1 parent 7b6545f commit e2ea08b

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

config/hyde.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@
214214
|--------------------------------------------------------------------------
215215
|
216216
| This setting specifies the output path for your site, useful to for
217-
| example, store the site in the docs/ directory for GitHub Pages.
218-
| The path is relative to the root of your project.
217+
| example, store the site in the docs/ directory for GitHub Pages.
218+
| The path is relative to the root of your project.
219219
|
220220
| To use an absolute path, or just to learn more:
221221
| @see https://hydephp.com/docs/master/advanced-customization#customizing-the-output-directory-
@@ -224,7 +224,6 @@
224224

225225
'output_directory' => '_site',
226226

227-
228227
/**
229228
* @deprecated use the 'output_directory' setting instead
230229
*/

packages/framework/config/hyde.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@
214214
|--------------------------------------------------------------------------
215215
|
216216
| This setting specifies the output path for your site, useful to for
217-
| example, store the site in the docs/ directory for GitHub Pages.
218-
| The path is relative to the root of your project.
217+
| example, store the site in the docs/ directory for GitHub Pages.
218+
| The path is relative to the root of your project.
219219
|
220220
| To use an absolute path, or just to learn more:
221221
| @see https://hydephp.com/docs/master/advanced-customization#customizing-the-output-directory-
@@ -224,7 +224,6 @@
224224

225225
'output_directory' => '_site',
226226

227-
228227
/**
229228
* @deprecated use the 'output_directory' setting instead
230229
*/

packages/framework/src/HydeServiceProvider.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ function () {
5757

5858
$this->discoverBladeViewsIn('_pages');
5959

60-
6160
/** @deprecated v0.43.0-beta and is used here as a fallback for compatibility */
6261
if (config('hyde.output_directory') === null) {
6362
$this->storeCompiledSiteIn(config(
@@ -70,7 +69,7 @@ function () {
7069
trim('hyde.output_directory', '_site'), '/\\')
7170
));
7271
}
73-
72+
7473
$this->commands([
7574
Commands\HydePublishHomepageCommand::class,
7675
Commands\HydeUpdateConfigsCommand::class,

0 commit comments

Comments
 (0)