| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 24 | public function handle() |
|
| 31 | { |
||
| 32 | 24 | $driver = $this->laravel['url.shortener']->driver($this->input->getOption('driver')); |
|
| 33 | |||
| 34 | 24 | $shortUrl = $driver->shorten($this->input->getArgument('url')); |
|
| 35 | |||
| 36 | 24 | $this->info('URL shortened successfully.'); |
|
| 37 | 24 | $this->info("Your short URL is: $shortUrl"); |
|
| 38 | 24 | } |
|
| 60 |