rawGet() публичный Метод

returns the value of a property (column). If the property is not yet loaded this method does NOT load it.
public rawGet ( $fieldName ) : mixed
Результат mixed
Пример #1
0
 private function _trim(Doctrine_Record $record)
 {
     foreach ($this->_options['fields'] as $field) {
         if ($record->rawGet($field) != trim($record->rawGet($field))) {
             $record->set($field, trim($record->rawGet($field)), false);
         }
     }
 }
 /**
  * Use inside of overriden Doctrine accessors
  *
  * @param string $name 
  * @param string $load 
  * @return void
  */
 public function rawGet($name)
 {
     return parent::rawGet($name);
 }