final protected function getArguments()

in src/CLIBase.hack [113:119]


  final protected function getArguments(): vec<string> {
    invariant(
      $this is CLIWithArguments,
      "Calling getArguments(), but don't accept arguments",
    );
    return $this->arguments;
  }