Code Duplication    Length = 7-7 lines in 2 locations

core/db_models/EEM_Base.model.php 1 location

@@ 3807-3813 (lines=7) @@
3804
	 * @throws EE_Error
3805
	 * @return EE_Model_Field_Base
3806
	 */
3807
	public function field_settings_for($fieldName){
3808
		$fieldSettings=$this->field_settings(true);
3809
		if( ! array_key_exists($fieldName,$fieldSettings)){
3810
			throw new EE_Error(sprintf(__("There is no field/column '%s' on '%s'",'event_espresso'),$fieldName,get_class($this)));
3811
		}
3812
		return $fieldSettings[$fieldName];
3813
	}
3814
3815
	/**
3816
	 * Checks if this field exists on this model

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

@@ 311-317 (lines=7) @@
308
	 * @return EE_Form_Section_Proper
309
	 * @throws EE_Error
310
	 */
311
	public function get_proper_subsection($name, $require_construction_to_be_finalized = TRUE ){
312
		$subsection = $this->get_subsection( $name, $require_construction_to_be_finalized );
313
		if( ! $subsection instanceof EE_Form_Section_Proper){
314
			throw new EE_Error(sprintf(__("Subsection '%'s is not an instanceof EE_Form_Section_Proper on form '%s'", 'event_espresso'),$name, get_class($this)));
315
		}
316
		return $subsection;
317
	}
318
319
320