Test Setup Failed
Push — master ( 983cd9...0500e8 )
by Zacchaeus
05:28
created
src/GrammarServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function register()
44 44
     {
45
-        $this->app->bind('laravel-grammar', function () {
45
+        $this->app->bind('laravel-grammar', function() {
46 46
             return new Word();
47 47
         });
48 48
     }
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         $timestamp = date('Y_m_d_His');
68 68
 
69 69
         return Collection::make($this->app->databasePath().DIRECTORY_SEPARATOR.'migrations'.DIRECTORY_SEPARATOR)
70
-            ->flatMap(function ($path) use ($filesystem) {
70
+            ->flatMap(function($path) use ($filesystem) {
71 71
                 return $filesystem->glob($path.'*_create_laravel_grammar_table.php');
72 72
             })->push($this->app->databasePath()."/migrations/{$timestamp}_create_laravel_grammar_table.php")
73 73
             ->first();
Please login to merge, or discard this patch.
src/Helpers/helpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (! function_exists('part_of_speech')) {
3
+if (!function_exists('part_of_speech')) {
4 4
     function part_of_speech($word)
5 5
     {
6 6
         return (new \Djunehor\Grammar\Word())->getWordPartOfSpeech($word);
7 7
     }
8 8
 }
9 9
 
10
-if (! function_exists('parts_of_speech')) {
10
+if (!function_exists('parts_of_speech')) {
11 11
     function parts_of_speech()
12 12
     {
13 13
         return (new \Djunehor\Grammar\Word())->getPartsOfSpeech();
Please login to merge, or discard this patch.