Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function handle() |
||
30 | { |
||
31 | $endpoint = Endpoint::find($id = $this->argument('id')); |
||
32 | if (! $endpoint) { |
||
33 | $this->error("Endpoint With ID {$id} Doesn't Exist "); |
||
34 | |||
35 | return; |
||
36 | } |
||
37 | |||
38 | $endpoint->delete(); |
||
39 | |||
40 | $this->info("Endpoint With ID {$id} Has Been Deleted "); |
||
41 | } |
||
42 | } |
||
43 |