Model::save PHP Method

save() public method

Save the data associated with this model instance to the database.
public save ( ) : null
return null
    public function save()
    {
        return $this->orm->save();
    }

Usage Example

Example #1
0
 /**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  *
  * @return void
  */
 protected function setUp()
 {
     $this->user = Model::fromArray(array('lastname' => 'Test', 'firstname' => 'Test', 'email' => '*****@*****.**', 'login' => 'test-user-model', 'user_acl_role_id' => 1));
     $this->user->setPassword('test-user-model-password');
     $this->user->save();
     $this->object = new Acl($this->user);
 }
All Usage Examples Of Model::save