There might be a case when two or more routes can match the same URL. In Symfony, application routes are evaluated in the order they are defined. Routes that defined...
Girier Wi-Fi light switch is 10 A switch that has integrated Wi-Fi module. Switch can be installed into the electrical box in the wall and allows to control home lighting...
In some Symfony applications, it is common to use the same set of constraints in different places. This tutorial explains how to create a reusable set of constraints in Symfony...
Symfony framework provides many built-in commands that allow to debug various application parts. This tutorial explains how to check validation constraints for class using console command in Symfony 7 application...
Symfony framework provides static code analysis commands (also known as linters) that allows to check some parts of application such YAML syntax, TWIG syntax, etc.
This tutorial shows how to...
In order to convert objects to specific format (e.g. JSON, XML) and vice versa, we can use Serializer component provided by Symfony. Sometimes we might encounter with API that returns...
Symfony provides the Serializer component which allows converting objects to specific format (e.g. JSON, XML) and vice versa. By default, all properties are included during object serialization.
This tutorial provides...
Symfony framework allows restricting routes through conditions. This tutorial explains how to make route available if debug mode is enabled in Symfony 7 application.
In .env file, we can specify...
Symfony framework provides the Session object which can be used for storing information about the user between requests.
This tutorial provides 2 methods how to get Session object in Symfony...
VLC engine on Android application can be embedded using LibVLC library. This tutorial provides example how to play a video file using LibVLC on Android application.
Firstly, add the LibVLC...