- Request / Response
- Performance
- Validator
- Forms
- Exception
- Logs 53
- Events
- Routing
- Cache
- Translation
- Security
- Twig
- HTTP Client
- Doctrine 1
- E-mails
- Debug
- E-mails
- Notifications
- Doctrine MongoDB 0
- Configuration
Configuration Settings
Theme
Default theme. It switches between Light and Dark automatically to match the operating system theme.
Provides greatest readability, but requires a well-lit environment.
Reduces eye fatigue. Ideal for low light environments.
Page Width
Fixed page width. Improves readability.
Dynamic page width. As wide as the browser window.
Validator calls
In
LoginController.php
line 41 (context):
No violations
$requestJson = $request->getContent();
$requestArray = json_decode($requestJson, true);
$requestObject = $loginUserRequestSerializer->denormalize($requestArray);
$errors = $validator->validate($requestObject);
if (count($errors) > 0) {
throw new SerializerException($errors[0]->getMessage(), $errors[0]->getCode(), 400);
[ "value" => App\Model\Request\Login\LoginUserRequest {#1048 -email: "[email protected]" -password: "Emel3962***" } "constraints" => null "groups" => null ]