| Lines of Code | 14 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | 'use strict'; |
||
| 2 | |||
| 3 | import Command from './command'; |
||
| 4 | |||
| 5 | export default class Composer extends Command { |
||
| 6 | match(name) { |
||
| 7 | return name === 'composer'; |
||
| 8 | } |
||
| 9 | |||
| 10 | call(cmd) { |
||
| 11 | cmd.command = `composer --command="${this.addslashes(cmd.rest)}"`; |
||
| 12 | super.call(cmd); |
||
| 13 | } |
||
| 14 | } |
||
| 15 |