Completed
Push — master ( a8d29c...58496f )
by Maxime
11:17
created
src/Distilleries/Expendable/Listeners/UserListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     {
36 36
 
37 37
 
38
-        if($model->email != ''){
38
+        if ($model->email != '') {
39 39
             $model->unlock();
40 40
         }
41 41
 
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Http/Controllers/Admin/UserController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
 
56
-    public function postUnLock(Request $request){
56
+    public function postUnLock(Request $request) {
57 57
 
58 58
         $model = $this->model->findOrFail($request->get('id'));
59 59
         $model->nb_of_try = 0;
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     }
64 64
 
65 65
 
66
-    public function postLock(Request $request){
66
+    public function postLock(Request $request) {
67 67
 
68 68
         $model = $this->model->findOrFail($request->get('id'));
69 69
         $model->nb_of_try = config('expendable.auth.nb_of_try');
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Scopes/StatusScope.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use Illuminate\Database\Eloquent\Scope;
6 6
 use Illuminate\Database\Eloquent\Model;
7 7
 
8
-class StatusScope implements Scope{
8
+class StatusScope implements Scope {
9 9
 
10 10
     /**
11 11
      * All of the extensions to be added to the builder.
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Http/Controllers/Admin/Base/BaseController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         $this->layoutManager->initStaticPart(function($layoutManager)
50 50
         {
51 51
 
52
-            $menu_top  = $layoutManager->getView()->make('expendable::admin.menu.top',[
52
+            $menu_top  = $layoutManager->getView()->make('expendable::admin.menu.top', [
53 53
                 'languages'=>Language::all()
54 54
             ]);
55 55
             $menu_left = $layoutManager->getView()->make('expendable::admin.menu.left');
Please login to merge, or discard this patch.
src/config/config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
     'login_uri'           => 'admin/login',
5 5
     'logout_action'       => 'Distilleries\Expendable\Http\Controllers\Admin\LoginController@getLogout',
6 6
     'admin_base_uri'      => 'admin',
7
-    'config_file_assets'  => base_path() . '/package.json',
7
+    'config_file_assets'  => base_path().'/package.json',
8 8
     'folder_whitelist'    => [
9 9
         'moximanager'
10 10
     ],
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Scopes/TranslatableScope.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
             $iso = app()->getLocale();
32 32
         }
33 33
 
34
-        $builder->whereExists(function ($query) use ($model, $iso) {
34
+        $builder->whereExists(function($query) use ($model, $iso) {
35 35
             $query->select(\DB::raw(1))
36 36
                 ->from($model->getQualifiedTable())
37
-                ->whereRaw($model->getTable() . '.' . $model->getKeyName() . ' = ' . $model->getQualifiedIdElementColumn())
37
+                ->whereRaw($model->getTable().'.'.$model->getKeyName().' = '.$model->getQualifiedIdElementColumn())
38 38
                 ->where($model->getQualifiedIsoColumn(), $iso)
39 39
                 ->where($model->getQualifiedModelColumn(), $model->getTable());
40 40
         });
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     protected function addWithoutTranslation(Builder $builder)
68 68
     {
69
-        $builder->macro('withoutTranslation', function (Builder $builder) {
69
+        $builder->macro('withoutTranslation', function(Builder $builder) {
70 70
             return $builder->withoutGlobalScope($this);
71 71
         });
72 72
     }
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Scopes/Translatable.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     {
38 38
         $translation = new Translation;
39 39
 
40
-        return $translation->getTable() . '.' . $translation->getIsoColumn();
40
+        return $translation->getTable().'.'.$translation->getIsoColumn();
41 41
     }
42 42
 
43 43
     /**
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     {
50 50
         $translation = new Translation;
51 51
 
52
-        return $translation->getTable() . '.' . $translation->getIdElementColumn();
52
+        return $translation->getTable().'.'.$translation->getIdElementColumn();
53 53
     }
54 54
 
55 55
     /**
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     {
62 62
         $translation = new Translation;
63 63
 
64
-        return $translation->getTable() . '.' . $translation->getModelColumn();
64
+        return $translation->getTable().'.'.$translation->getModelColumn();
65 65
     }
66 66
 
67 67
     /**
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     {
74 74
         $translation = new Translation;
75 75
 
76
-        return $translation->getTable() . '.' . $translation->getIdSourceColumn();
76
+        return $translation->getTable().'.'.$translation->getIdSourceColumn();
77 77
     }
78 78
 
79 79
     /**
Please login to merge, or discard this patch.
src/Distilleries/Expendable/States/ExportStateTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,12 +59,12 @@
 block discarded – undo
59 59
         if (!$result->isEmpty())
60 60
         {
61 61
             $exporter = app($data['type']);
62
-            $file     = $exporter->export($result->toArray(), $data['range']['start'] . ' ' . $data['range']['end']);
62
+            $file     = $exporter->export($result->toArray(), $data['range']['start'].' '.$data['range']['end']);
63 63
 
64 64
             return $file;
65 65
         }
66 66
 
67
-        return redirect()->to(action('\\' . get_class($this) . '@getExport'));
67
+        return redirect()->to(action('\\'.get_class($this).'@getExport'));
68 68
 
69 69
     }
70 70
 } 
71 71
\ No newline at end of file
Please login to merge, or discard this patch.
src/Distilleries/Expendable/States/ImportStateTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
             return redirect()->back()->with(Message::WARNING, [trans('expendable::errors.file_not_found')]);
58 58
         }
59 59
 
60
-        $contract = ucfirst(app('files')->extension($file)) . 'ImporterContract';
60
+        $contract = ucfirst(app('files')->extension($file)).'ImporterContract';
61 61
         $exporter = app($contract);
62 62
         $data     = $exporter->getArrayDataFromFile($file);
63 63
 
Please login to merge, or discard this patch.