show = $show; if ( $from !== null ) { $this->from = $from; } if ( $in !== null ) { $this->in = $in; } return $this; } public function render() : string { return $this->renderSegments([ static::SQL_TOKEN, $this->show, ] + ( ! empty($this->from) ? [ static::SQL_TOKEN_FROM, $this->from ] : [] ) + ( ! empty($this->in) ? [ static::SQL_TOKEN_IN, $this->in ] : [] ) ); } }