$model = new Model();
$model->save('Заголовок', 'Описание');
$object = new Object();
$object->title = "Заголовок";
$object->contents = "Описание";
$object->save();
class Model
{
...
private title;
private contents;
...
public function setTitle( $title )
{
$object->title = $title;
}
public function setContent( $contents )
{
$object->contents = $contents;
}
public function save()
{
...
}
}
...
$model = new Model();
$model->setTitle( "Заголовок" );
$model->setContent( "Описание" );
$model->save();
...