Code snippets

You will find here 6 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 use role constants with the IsGranted Symfony attribute instead of using raw strings. We can use the Aut...

Symfony

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

 View the code


This snippet shows what permissions we must use for a private SSH key. This is the kind of thing I always forget! So, let's have ...

Linux

Published on 2022-07-26 • Modified on 2022-07-26

 View the code


In this snippet, we see how to test a role of an arbitrary user with Symfony. We know to do it for the current user, thanks to the...

Symfony

Published on 2022-06-12 • Modified on 2022-06-12

 View the code


In this snippet, we see how to test a JSON login with the API Platform ApiTestCase class. We pass the username and password with t...

API Platform

Published on 2021-10-31 • Modified on 2021-10-31

 View the code


In this snippet, we will see how to access the logged user in a Twig template. This can be you through the app Twig global variabl...

Twig

Published on 2021-03-27 • Modified on 2021-03-27

 View the code


In this snippet, we will see how to deactivate the SSL peer certificate check with the Symfony HTTP client. When you trust the sou...

Symfony

Published on 2021-03-20 • Modified on 2021-03-20

 View the code