Skip to content

Commit

Permalink
Apply fixes from StyleCI (#3)
Browse files Browse the repository at this point in the history
Co-authored-by: Jonas Siewertsen <[email protected]>
  • Loading branch information
Jonas Siewertsen and jonassiewertsen authored Mar 2, 2021
1 parent 04b6fc4 commit 937bfd0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
|
*/

// 'parser' => 'commonmark',
// 'parser' => 'commonmark',

'settings' => [
'commonmark' => [
Expand Down
4 changes: 2 additions & 2 deletions src/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ public function register()

public function boot()
{
$this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'markdown');
$this->mergeConfigFrom(__DIR__.'/../config/config.php', 'markdown');

if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__ . '/../config/config.php' => config_path('markdown.php'),
__DIR__.'/../config/config.php' => config_path('markdown.php'),
], 'markdown');
}
}
Expand Down
3 changes: 2 additions & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ class TestCase extends OrchestraTestCase
{
/**
* Load package service provider.
*
* @param \Illuminate\Foundation\Application $app
*
* @return array
*/
protected function getPackageProviders($app)
Expand All @@ -17,5 +19,4 @@ protected function getPackageProviders($app)
\VV\Markdown\ServiceProvider::class,
];
}

}

0 comments on commit 937bfd0

Please sign in to comment.