<?php class PostMapper { public function objectToDb(Post $post) { return [ 'title' => $post->getTitle(), 'content' => $post->getContent() ]; } }