| Conditions | 7 |
| Paths | 20 |
| Total Lines | 51 |
| Code Lines | 28 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 47 | */ |
||
| 48 | public function handle() |
||
| 49 | { |
||
| 50 | $data = array_filter([ |
||
| 51 | |||
| 52 | // Required ability attributes |
||
| 53 | 'name' => $this->option('name'), |
||
| 54 | 'slug' => $this->option('slug'), |
||
| 55 | 'description' => $this->option('description'), |
||
| 56 | |||
| 57 | ], [ |
||
| 58 | $this, |
||
| 59 | 'filter', |
||
| 60 | ]); |
||
| 61 | |||
| 62 | // Get required argument |
||
| 63 | $field = $this->argument('field') ?: $this->ask(Lang::get('rinvex.fort::artisan.ability.invalid')); |
||
| 64 | |||
| 65 | // Find single ability |
||
| 66 | if (intval($field)) { |
||
| 67 | $ability = Ability::find($field); |
||
| 68 | } else { |
||
| 69 | $ability = Ability::where(['slug' => $field])->first(); |
||
| 70 | } |
||
| 71 | |||
| 72 | if (! $ability) { |
||
| 73 | return $this->error(Lang::get('rinvex.fort::artisan.ability.invalid', ['field' => $field])); |
||
| 74 | } |
||
| 75 | |||
| 76 | $rules = [ |
||
| 77 | 'name' => 'sometimes|required|max:255', |
||
| 78 | 'slug' => 'sometimes|required|max:255|unique:'.config('rinvex.fort.tables.abilities'), |
||
| 79 | ]; |
||
| 80 | |||
| 81 | if (! empty($data)) { |
||
| 82 | $validator = app(Factory::class)->make($data, $rules); |
||
| 83 | |||
| 84 | if ($validator->fails()) { |
||
| 85 | $this->error('Errors:'); |
||
| 86 | |||
| 87 | foreach ($validator->errors()->getMessages() as $key => $messages) { |
||
| 88 | $this->error('- '.$key.': '.$messages[0]); |
||
| 89 | } |
||
| 90 | } else { |
||
| 91 | $ability->update($data); |
||
| 92 | |||
| 93 | $this->info(Lang::get('rinvex.fort::artisan.ability.updated').' ['.Lang::get('rinvex.fort::artisan.ability.id').': '.$ability->id.', '.Lang::get('rinvex.fort::artisan.ability.name').': '.$ability->name.', '.Lang::get('rinvex.fort::artisan.ability.slug').': '.$ability->slug.']'); |
||
|
|
|||
| 94 | } |
||
| 95 | } else { |
||
| 96 | $this->info(Lang::get('rinvex.fort::artisan.ability.nothing')); |
||
| 97 | } |
||
| 98 | } |
||
| 112 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.