Carbon_Fields\Datastore\Datastore_Interface::save PHP Метод

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

Save the field value(s) into the database.
public save ( Field $field )
$field Carbon_Fields\Field\Field The field to save.
    public function save(Field $field);

Usage Example

Пример #1
0
 /**
  * Delegate save to the field DataStore instance
  **/
 public function save()
 {
     return $this->store->save($this);
 }