Skip to content

Commit ef8f706

Browse files
fix CI style errors
1 parent af5e81e commit ef8f706

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Classes/ExportLocalizations.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ protected function parseJsonFiles($file, $key, $dir)
338338

339339
public static function exportToArray()
340340
{
341-
return app()->make(ExportLocalizations::class)->export()->toArray();
341+
return app()->make(self::class)->export()->toArray();
342342
}
343343

344344
protected static function executeCallback($strings)

src/LaravelLocalizationServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function boot()
2424
return new ExportLocalizations($phpRegex, $jsonRegex);
2525
});
2626

27-
$this->app->alias( ExportLocalizations::class,'export-localization');
27+
$this->app->alias(ExportLocalizations::class, 'export-localization');
2828

2929
/*
3030
* Config

0 commit comments

Comments
 (0)