In the previous blog posts we learned a lot about the Symfony Validator. We know how to create an object[…]
Read moreCategory: PHP
Symfony Validator with FOS REST
In the previous blog post we learned how we can use the Symfony validator in our system. We will continue from[…]
Read moreSymfony Validation with the Validator
In the previous blog post I talked about the differences between exceptions and a validator. We know that on the[…]
Read moreSymfony Validation – Validator or Exceptions?
Validation is important in any application. You need to be sure that any data entered by a user is valid[…]
Read moreDoctrine XML Mapping or Annotations?
Annotations are very popular in Symfony. They are easy to write and understand. And most IDE’s have great support for[…]
Read moreUUID over auto increment in PHP
We know that our Domain should not be dependent on our database implementation. Then why do we use auto increment[…]
Read moreSymfony 4 REST API Part 2 – Data Transfer Object
In Part 1 we learned about REST. What REST is and how to implement a simple Restful API with the[…]
Read moreSymfony 4 REST API Part 1 – FOSRestBundle
REST as in Representational State Transfer is something that can’t be ignored in today’s ecosystem. There is a big need[…]
Read moreThe Value Object and Doctrine
When you are diving deeper in how to construct a good Domain Model. You uncover different concepts which allows you[…]
Read moreThree Layered Architecture in Symfony
One of the concepts of clean architecture is the concept of layers. A layer will divide your code between different[…]
Read more