<?php
use Chubbyphp\Validation\Error\Error;
$error = new Error(
'path.to.property',
'constraint.constraint.invalidtype',
['type' => 'array']
);
$error->getPath();
// 'path.to.property'
$error->getKey();
// 'constraint.constraint.invalidtype'
$error->getArguments();
// ['type' => 'array']
This repository has been archived by the owner on Jul 6, 2024. It is now read-only.