Passed
Branch master (d81822)
by Jelly
03:51 queued 01:29
created
src/TranslugServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public function register()
33 33
     {
34
-        $this->app->singleton('translug',function () {
34
+        $this->app->singleton('translug', function() {
35 35
             return new Translation(new Client());
36 36
         });
37 37
     }
Please login to merge, or discard this patch.
src/helpers/functions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (! function_exists('translug')) {
3
+if (!function_exists('translug')) {
4 4
 
5 5
     /**
6 6
      * Arrange for a flash message.
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
     {
13 13
         $translator = app('translug');
14 14
 
15
-        if (! is_null($title)) {
15
+        if (!is_null($title)) {
16 16
             return $translator->translug($title);
17 17
         }
18 18
 
Please login to merge, or discard this patch.