Code Duplication    Length = 3-3 lines in 2 locations

includes/classes/PropertyHider.php 2 locations

@@ 78-80 (lines=3) @@
75
  }
76
77
  protected function checkPropertyExists($name) {
78
    if (!array_key_exists($name, $this->_properties)) {
79
      throw new ExceptionPropertyNotExists('Property [' . get_called_class() . '::' . $name . '] not exists', ERR_ERROR);
80
    }
81
  }
82
83
  protected function checkOverwriteAdjusted($name) {
@@ 84-86 (lines=3) @@
81
  }
82
83
  protected function checkOverwriteAdjusted($name) {
84
    if (array_key_exists($name, $this->propertiesAdjusted)) {
85
      throw new PropertyAccessException('Property [' . get_called_class() . '::' . $name . '] already was adjusted so no SET is possible until dbSave', ERR_ERROR);
86
    }
87
  }
88
89
  /**