| @@ -5,16 +5,16 @@ | ||
| 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 | } | 
| @@ -54,7 +54,7 @@ | ||
| 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 | } | 
| @@ -53,8 +53,8 @@ | ||
| 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 | } | 
| @@ -35,7 +35,7 @@ | ||
| 35 | 35 |      { | 
| 36 | 36 | |
| 37 | 37 | |
| 38 | -        if($model->email != ''){ | |
| 38 | +        if ($model->email != '') { | |
| 39 | 39 | $model->unlock(); | 
| 40 | 40 | } | 
| 41 | 41 | |
| @@ -53,7 +53,7 @@ discard block | ||
| 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 | ||
| 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'); | 
| @@ -5,7 +5,7 @@ | ||
| 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. | 
| @@ -49,7 +49,7 @@ | ||
| 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'); | 
| @@ -1,10 +1,10 @@ | ||
| 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 | |
| @@ -4,7 +4,7 @@ | ||
| 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 | ], | 
| @@ -31,10 +31,10 @@ discard block | ||
| 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 | ||
| 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 | } |