for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Response;
use JMS\Serializer\Annotation as Serializer;
class Violation {
public readonly string $property;
public readonly string $message;
public function __construct(string $property, string $message) {
$this->property = $property;
property
App\Response\Violation
$this->message = $message;
message
}