| Total Complexity | 2 | 
| Total Lines | 12 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 11 | final class Explain extends CommandAbstract implements CommandInterface | ||
| 12 | { | ||
| 13 | protected static $command = 'GRAPH.EXPLAIN'; | ||
| 14 | |||
| 15 | private function __construct(string $name, string $queryString) | ||
| 16 |     { | ||
| 17 | $this->arguments = [$name, $queryString, '--compact']; | ||
| 18 | } | ||
| 19 | |||
| 20 | public static function createCommandWithArguments(QueryInterface $query): CommandInterface | ||
| 23 | } | ||
| 24 | } | ||
| 25 |