Beispiel #1
0
 /**
  * Display the description of a table
  *
  * @param      string  $command  The command passed by the user with its arguments
  */
 private function descTable(string $command)
 {
     $args = $this->getArgs($command);
     if ($this->checkTableName($args)) {
         static::out(static::prettySqlResult($args['t'], DB::descTable($args['t'])) . PHP_EOL);
     }
 }