Carbon_Fields\Datastore\Datastore_Interface::save PHP Method

save() public method

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

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