notices[] = array( 'message' => $message, 'type' => $type, ); return $this; } /** * Output the registered notices */ public function show() { foreach( $this->notices as $notice ) { echo sprintf( '

%s

', $notice['type'], $notice['message'] ); } } }