DELETE'ing Things


Our Symfony2 and FosRestBundle API wouldn't be complete if we couldn't DELETE records.

With all the ground work done in the previous videos, adding DELETE functionality is super simple.

Following on from previous videos, we are going to start with our failing tests and then work through to make them pass. There are only two tests for this verb at present - checking that DELETE on a none existent record returns a 404 code, and that a DELETE on a valid record returns a 204 code.

By the end of this video you will have implemented DELETE into your RESTful API.

Code For This Course

Get the code for this course.

Code For This Video

Get the code for this video.

Episodes