Test Setup Failed
Branch master (9c9f62)
by Jelly
04:43
created
src/helpers/functions.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
     /**
6 6
      * Arrange for a flash message.
7 7
      *
8
-     * @param  string|null $message
9 8
      * @return
10 9
      */
11 10
     function translug($title = '')
Please login to merge, or discard this 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.
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.