Code Duplication    Length = 8-8 lines in 2 locations

Ajax/bootstrap/html/base/HtmlNavElement.php 1 location

@@ 72-79 (lines=8) @@
69
		return $this;
70
	}
71
72
	public function __call($method, $args) {
73
		if(isset($this->$method) && is_callable($this->$method)) {
74
			return call_user_func_array(
75
					$this->$method,
76
					$args
77
					);
78
		}
79
	}
80
81
	public abstract function fromDispatcher($dispatcher,$startIndex=0);
82

Ajax/semantic/html/base/HtmlSemNavElement.php 1 location

@@ 75-82 (lines=8) @@
72
		return $this;
73
	}
74
75
	public function __call($method, $args) {
76
		if(isset($this->$method) && is_callable($this->$method)) {
77
			return call_user_func_array(
78
					$this->$method,
79
					$args
80
					);
81
		}
82
	}
83
84
	public abstract function fromDispatcher($dispatcher,$startIndex=0);
85