Skip to content

Commit

Permalink
Styleci fix 2
Browse files Browse the repository at this point in the history
Indentation
  • Loading branch information
fridzema authored Feb 6, 2018
1 parent a00a3de commit 88f6108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ public function boot()
// Register blade directives
$this->app->afterResolving('blade.compiler', function (BladeCompiler $bladeCompiler) {
$bladeCompiler->directive('money', function ($expression) {
return "<?php echo money($expression); ?>";
return "<?php echo money($expression); ?>";
});
});

$this->app->afterResolving('blade.compiler', function (BladeCompiler $bladeCompiler) {
$bladeCompiler->directive('currency', function ($expression) {
return "<?php echo currency($expression); ?>";
return "<?php echo currency($expression); ?>";
});
});
}
Expand Down

0 comments on commit 88f6108

Please sign in to comment.