Completed
Push — master ( 5cb0a6...bc4d07 )
by Maxime
03:02
created
src/Distilleries/Expendable/Http/Middleware/VerifyCsrfToken.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -5,16 +5,16 @@
 block discarded – undo
5 5
 
6 6
 class VerifyCsrfToken extends BaseVerifier {
7 7
 
8
-	/**
9
-	 * Handle an incoming request.
10
-	 *
11
-	 * @param  \Illuminate\Http\Request  $request
12
-	 * @param  \Closure  $next
13
-	 * @return mixed
14
-	 */
15
-	public function handle($request, Closure $next)
16
-	{
17
-		return parent::handle($request, $next);
18
-	}
8
+    /**
9
+     * Handle an incoming request.
10
+     *
11
+     * @param  \Illuminate\Http\Request  $request
12
+     * @param  \Closure  $next
13
+     * @return mixed
14
+     */
15
+    public function handle($request, Closure $next)
16
+    {
17
+        return parent::handle($request, $next);
18
+    }
19 19
 
20 20
 }
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Models/Translation.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     public function scopeByElement($query, Model $model)
55 55
     {
56 56
         return $query->where($this->getTable() . '.' . $this->getModelColumn(), '=', $model->getTable())
57
-                     ->where($this->getTable() . '.' . $this->getIdSourceColumn(), '=', $model->getKey());
57
+                        ->where($this->getTable() . '.' . $this->getIdSourceColumn(), '=', $model->getKey());
58 58
     }
59 59
 
60 60
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,8 @@
 block discarded – undo
53 53
 
54 54
     public function scopeByElement($query, Model $model)
55 55
     {
56
-        return $query->where($this->getTable() . '.' . $this->getModelColumn(), '=', $model->getTable())
57
-                     ->where($this->getTable() . '.' . $this->getIdSourceColumn(), '=', $model->getKey());
56
+        return $query->where($this->getTable().'.'.$this->getModelColumn(), '=', $model->getTable())
57
+                     ->where($this->getTable().'.'.$this->getIdSourceColumn(), '=', $model->getKey());
58 58
     }
59 59
 
60 60
 }
Please login to merge, or discard this patch.
src/Distilleries/Expendable/ExpendableServiceProvider.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 use Distilleries\Expendable\Exporter\CsvExporter;
4 4
 use Distilleries\Expendable\Exporter\ExcelExporter;
5
-use Distilleries\Expendable\Exporter\PdfExporter;
6 5
 use Distilleries\Expendable\Importer\CsvImporter;
7 6
 use Distilleries\Expendable\Importer\XlsImporter;
8 7
 use Distilleries\Expendable\Layouts\LayoutManager;
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -30,22 +30,22 @@  discard block
 block discarded – undo
30 30
     public function boot()
31 31
     {
32 32
 
33
-        $this->loadViewsFrom(__DIR__ . '/../../views', 'expendable');
34
-        $this->loadTranslationsFrom(__DIR__ . '/../../lang', 'expendable');
35
-        $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations/');
33
+        $this->loadViewsFrom(__DIR__.'/../../views', 'expendable');
34
+        $this->loadTranslationsFrom(__DIR__.'/../../lang', 'expendable');
35
+        $this->loadMigrationsFrom(__DIR__.'/../../database/migrations/');
36 36
 
37 37
 
38 38
         $this->publishes([
39
-            __DIR__ . '/../../config/config.php'    => config_path('expendable.php'),
40
-            __DIR__ . '/../../database/seeds/'      => base_path('/database/seeds'),
39
+            __DIR__.'/../../config/config.php'    => config_path('expendable.php'),
40
+            __DIR__.'/../../database/seeds/'      => base_path('/database/seeds'),
41 41
         ]);
42 42
 
43 43
 
44 44
         $this->publishes([
45
-            __DIR__ . '/../../views' => base_path('resources/views/vendor/expendable'),
45
+            __DIR__.'/../../views' => base_path('resources/views/vendor/expendable'),
46 46
         ], 'views');
47 47
         $this->mergeConfigFrom(
48
-            __DIR__ . '/../../config/config.php', 'expendable'
48
+            __DIR__.'/../../config/config.php', 'expendable'
49 49
         );
50 50
 
51 51
         $autoLoaderListener = new \Distilleries\Expendable\Register\ListenerAutoLoader(config('expendable.listener'));
@@ -128,13 +128,13 @@  discard block
 block discarded – undo
128 128
     protected function registerCommands()
129 129
     {
130 130
         $file  = app('files');
131
-        $files = $file->allFiles(__DIR__ . '/Console/');
131
+        $files = $file->allFiles(__DIR__.'/Console/');
132 132
 
133 133
         foreach ($files as $file)
134 134
         {
135 135
             if (strpos($file->getPathName(), 'Lib') === false)
136 136
             {
137
-                $this->commands('Distilleries\Expendable\Console\\' . preg_replace('/\.php/i', '', $file->getFilename()));
137
+                $this->commands('Distilleries\Expendable\Console\\'.preg_replace('/\.php/i', '', $file->getFilename()));
138 138
             }
139 139
         }
140 140
     }
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Listeners/UserListener.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 use Distilleries\Expendable\Contracts\LockableContract;
4 4
 use Distilleries\Expendable\Helpers\UserUtils;
5
-use Distilleries\Expendable\Models\User;
6 5
 
7 6
 class UserListener extends BaseListener
8 7
 {
Please login to merge, or discard this 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/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/Exporter/ExcelExporter.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
-     * Created by PhpStorm.
4
-     * User: mfrancois
5
-     * Date: 6/02/2015
6
-     * Time: 4:37 PM
7
-     */
3
+ * Created by PhpStorm.
4
+ * User: mfrancois
5
+ * Date: 6/02/2015
6
+ * Time: 4:37 PM
7
+ */
8 8
 
9 9
 namespace Distilleries\Expendable\Exporter;
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.