Code Duplication    Length = 6-6 lines in 4 locations

lib/ar/html/menu.php 4 locations

@@ 874-879 (lines=6) @@
871
			return $this;
872
		}
873
874
		public function bar( $options = array() ) {
875
			$this->configure( $options );
876
			$this->fill( ar_html_menu::bar( $this->options ) );
877
			$this->styleType = 'bar';
878
			return $this;
879
		}
880
881
		public function tree( $options = array() ) {
882
			$this->configure( $options );
@@ 881-886 (lines=6) @@
878
			return $this;
879
		}
880
881
		public function tree( $options = array() ) {
882
			$this->configure( $options );
883
			$this->fill( ar_html_menu::tree( $this->options ) );
884
			$this->styleType = 'tree';
885
			return $this;
886
		}
887
888
		public function crumbs( $options = array() ) {
889
			$this->configure( $options );
@@ 888-893 (lines=6) @@
885
			return $this;
886
		}
887
888
		public function crumbs( $options = array() ) {
889
			$this->configure( $options );
890
			$this->fill( ar_html_menu::crumbs( $this->options ) );
891
			$this->styleType = 'crumbs';
892
			return $this;
893
		}
894
895
		public function sitemap( $options = array() ) {
896
			$this->configure( $options );
@@ 895-900 (lines=6) @@
892
			return $this;
893
		}
894
895
		public function sitemap( $options = array() ) {
896
			$this->configure( $options );
897
			$this->fill( ar_html_menu::sitemap( $this->options ) );
898
			$this->styleType = 'sitemap';
899
			return $this;
900
		}
901
902
	}
903