Skip to content

Commit 4459276

Browse files
committed
Apply fixes from StyleCI
1 parent bf5bb97 commit 4459276

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

monorepo/file_seeder.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@
1212
use Hyde\Pages\DocumentationPage;
1313
use Hyde\Pages\MarkdownPage;
1414

15-
$autoloader = require __DIR__ . '/../vendor/autoload.php';
16-
$app = require_once __DIR__ . '/../app/bootstrap.php';
15+
$autoloader = require __DIR__.'/../vendor/autoload.php';
16+
$app = require_once __DIR__.'/../app/bootstrap.php';
1717

18-
echo shell_exec('php ' . hyde()->path('hyde') . ' publish:homepage posts -n');
18+
echo shell_exec('php '.hyde()->path('hyde').' publish:homepage posts -n');
1919

2020
foreach (['Index', 'Page 1', 'Page 2', 'Page 3'] as $page) {
2121
file_put_contents((new CreatesNewPageSourceFile($page, DocumentationPage::class, true))->getOutputPath(),
22-
file_get_contents(__DIR__ . '/../tests/fixtures/markdown.md'),
22+
file_get_contents(__DIR__.'/../tests/fixtures/markdown.md'),
2323
FILE_APPEND
2424
);
2525
}
2626

2727
file_put_contents((new CreatesNewPageSourceFile('Markdown Page', MarkdownPage::class, true))->getOutputPath(),
28-
file_get_contents(__DIR__ . '/../tests/fixtures/markdown.md'),
28+
file_get_contents(__DIR__.'/../tests/fixtures/markdown.md'),
2929
FILE_APPEND
3030
);
3131

0 commit comments

Comments
 (0)