Code Duplication    Length = 7-7 lines in 2 locations

lib/ar.php 2 locations

@@ 112-118 (lines=7) @@
109
			return ar_error::raiseError($message, $code, $previous);
110
		}
111
112
		public static function call( $template, $params = null ) {
113
			$context = self::context();
114
			$me = $context->getObject();
115
			if ($me) {
116
				return $me->call( $template, $params );
117
			}
118
		}
119
120
		public static function callSuper( $params = null ) {
121
			$context = self::context();
@@ 120-126 (lines=7) @@
117
			}
118
		}
119
120
		public static function callSuper( $params = null ) {
121
			$context = self::context();
122
			$me = $context->getObject();
123
			if ($me) {
124
				return $me->_call_super( $params );
125
			}
126
		}
127
128
		public static function taint(&$value) {
129
			if ( is_numeric($value) ) {