Code snippets

You will find here 4 code snippets I find useful so I don't have to Google ™ or Stackoverflow ™ them when I need. There are also code snippets I always forget! 😁 Sometimes, related links to the code will be available. The main difference with other random snippets you will find on the web is that in most cases (for the Symfony related ones) you will be able to run them directly from this website to check the output so you can verify it works as expected ™.

This snippet shows how to inject the Symfony project root directory in your services (or your controllers) with a bind. In a previ...

Symfony

Published on 2023-09-28 • Modified on 2023-09-28

 View the code


This snippet shows a YAML template to create a Symfony tagged iterator service: 1. We activate autowiring and autoconfigure. 2. We...

Symfony

Published on 2023-01-06 • Modified on 2023-01-06

 View the code


In this snippet, we will see how to enable or disable the Symfony profiler conditionally. I was reading the documentation (check o...

Symfony

Published on 2020-04-12 • Modified on 2020-04-12

 View the code


[Edit 2020-02-19] Please read my blog post on this topic. This is was my preferred way to declare and use Doctrine repositories. ...

Doctrine

Published on 2019-08-27 • Modified on 2020-02-17

 View the code