Code Duplication    Length = 7-7 lines in 2 locations

core/db_models/EEM_Base.model.php 1 location

@@ 3540-3546 (lines=7) @@
3537
	 * @throws EE_Error
3538
	 * @return EE_Model_Field_Base
3539
	 */
3540
	public function field_settings_for($fieldName){
3541
		$fieldSettings=$this->field_settings(true);
3542
		if( ! array_key_exists($fieldName,$fieldSettings)){
3543
			throw new EE_Error(sprintf(__("There is no field/column '%s' on '%s'",'event_espresso'),$fieldName,get_class($this)));
3544
		}
3545
		return $fieldSettings[$fieldName];
3546
	}
3547
3548
	/**
3549
	 * Checks if this field exists on this model

core/libraries/form_sections/base/EE_Form_Section_Proper.form.php 1 location

@@ 297-303 (lines=7) @@
294
	 * @return EE_Form_Section_Proper
295
	 * @throws EE_Error
296
	 */
297
	public function get_proper_subsection($name, $require_construction_to_be_finalized = TRUE ){
298
		$subsection = $this->get_subsection( $name, $require_construction_to_be_finalized );
299
		if( ! $subsection instanceof EE_Form_Section_Proper){
300
			throw new EE_Error(sprintf(__("Subsection '%'s is not an instanceof EE_Form_Section_Proper on form '%s'", 'event_espresso'),$name, get_class($this)));
301
		}
302
		return $subsection;
303
	}
304
305
306