id = $name; $this->command = $cmd; } /** * Get id. * * @return string * * @since 1.0.0 */ public function getId() : string { return $this->id; } /** * Get command. * * @return string * * @since 1.0.0 */ public function getCommand() : string { return $this->command; } /** * Set command. * * @param string $command Command * * @return void * * @since 1.0.0 */ public function setCommand(string $command) /* : void */ { $this->command = $command; } /** * Get run. * * @return string * * @since 1.0.0 */ public function getRun() : string { return $this->run; } /** * Set run. * * @param string $run Command/script to run * * @return void * * @since 1.0.0 */ public function setRun(string $run) /* : void */ { $this->run = $run; } /** * Get status. * * @return string * * @since 1.0.0 */ public function getStatus() : string { return $this->status; } /** * Set status. * * @param string $status Status * * @return void * * @since 1.0.0 */ public function setStatus(string $status) /* : void */ { $this->status = $status; } /** * Get next run time. * * @return \DateTime * * @since 1.0.0 */ public function getNextRunTime() { return $this->nextRunTime; } /** * Set next run time. * * @param \DateTime $nextRunTime Next run time * * @return void * * @since 1.0.0 */ public function setNextRunTime(\DateTime $nextRunTime) /* : void */ { $this->nextRunTime = $nextRunTime; } /** * Get last run time. * * @return \DateTime * * @since 1.0.0 */ public function getLastRuntime() { return $this->lastRunTime; } /** * Set last run time. * * @param \DateTime $lastRunTime Last run time * * @return void * * @since 1.0.0 */ public function setLastRuntime(\DateTime $lastRunTime) /* : void */ { $this->lastRunTime = $lastRunTime; } /** * Get start. * * @return \DateTime * * @since 1.0.0 */ public function getStart() { return $this->start; } /** * Set start. * * @param \DateTime $start Start * * @return void * * @since 1.0.0 */ public function setStart(\DateTime $start) /* : void */ { $this->start = $start; } /** * Get end. * * @return \DateTime * * @since 1.0.0 */ public function getEnd() { return $this->end; } /** * Set end. * * @param \DateTime $end End * * @return void * * @since 1.0.0 */ public function setEnd(\DateTime $end) /* : void */ { $this->end = $end; } /** * Get author. * * @return string * * @since 1.0.0 */ public function getAuthor() : string { return $this->author; } /** * Set author. * * @param string $author Author * * @return void * * @since 1.0.0 */ public function setAuthor(string $author) /* : void */ { $this->author = $author; } /** * Get comment. * * @return string * * @since 1.0.0 */ public function getComment() : string { return $this->comment; } /** * Set comment. * * @param string $comment Comment * * @return void * * @since 1.0.0 */ public function setComment(string $comment) /* : void */ { $this->comment = $comment; } /** * Get comment. * * @return string * * @since 1.0.0 */ public function addResult(string $result) { $this->results[] = $result; } }