builder = $builder; } public function construct () { $this->builder->makeTitle('Geeting'); $this->builder->makeString('From morning to noon'); $this->builder->makeItems( array( 'Good Morning!', 'Good Afternoon!' ) ); $this->builder->makeString('At evening'); $this->builder->makeItems( array( 'Good Evening', 'Good Night', 'Good Bye' ) ); $this->builder->close(); } }