DB\Jig\Mapper::set PHP 메소드

set() 공개 메소드

Assign value to field
public set ( $key, $val ) : scalar | FALSE
$key string
$val scalar
리턴 scalar | FALSE
    function set($key, $val)
    {
        return $key == '_id' ? FALSE : ($this->document[$key] = $val);
    }