/** * Create a new command instance. */ public function __construct(CLImate $cli, BgpParser $bgpParser, IpUtils $ipUtils) { parent::__construct(); $this->cli = $cli; $this->bgpParser = $bgpParser; $this->ipUtils = $ipUtils; $this->versionedIndex = $this->indexName . '_' . time(); }
/** * Create a new command instance. * * @return void */ public function __construct() { parent::__construct(); $this->versionedIndex = $this->indexName . '_' . time(); }