Code Duplication    Length = 7-9 lines in 2 locations

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

@@ 473-479 (lines=7) @@
470
     * @return EE_Form_Section_Proper
471
     * @throws EE_Error
472
     */
473
    public function get_proper_subsection($name, $require_construction_to_be_finalized = true)
474
    {
475
        $subsection = $this->get_subsection($name, $require_construction_to_be_finalized);
476
        if (! $subsection instanceof EE_Form_Section_Proper) {
477
            throw new EE_Error(
478
                sprintf(
479
                    __("Subsection '%'s is not an instanceof EE_Form_Section_Proper on form '%s'", 'event_espresso'),
480
                    $name,
481
                    get_class($this)
482
                )

core/db_models/EEM_Base.model.php 1 location

@@ 4558-4566 (lines=9) @@
4555
     * @throws EE_Error
4556
     * @return EE_Model_Field_Base
4557
     */
4558
    public function field_settings_for($fieldName, $include_db_only_fields = true)
4559
    {
4560
        $fieldSettings = $this->field_settings($include_db_only_fields);
4561
        if (! array_key_exists($fieldName, $fieldSettings)) {
4562
            throw new EE_Error(sprintf(__("There is no field/column '%s' on '%s'", 'event_espresso'), $fieldName,
4563
                get_class($this)));
4564
        }
4565
        return $fieldSettings[$fieldName];
4566
    }
4567
4568
4569