public function saveAction()
    {
        // Sanitizing price from input
        $price = $this->request->getPost("price", "double");
        // Sanitizing email from input
        $email = $this->request->getPost("customerEmail", "email");
    }Why not implement automatic sanitazing of user input data?! Many developers will forget this one.