| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php namespace Spekkionu\Assetcachebuster\Console; |
||
| 55 | public function handle() |
||
| 56 | { |
||
| 57 | $this->line('Generating new asset hash. Environment: <comment>' . $this->laravel->make('env') . '</comment>'); |
||
| 58 | |||
| 59 | $hash = $this->hashReplacer->replaceHash(); |
||
| 60 | |||
| 61 | $this->config->set('assetcachebuster.hash', $hash); |
||
| 62 | |||
| 63 | $msg = "New hash {$hash} generated."; |
||
| 64 | $this->info($msg); |
||
| 65 | } |
||
| 66 | |||
| 68 |