for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Form\YiisoftFormModel\Exception;
final class PropertyNotSupportNestedValuesException extends ValueNotFoundException
{
public function __construct(string $property, private mixed $value)
parent::__construct('Property "' . $property . '" is not a nested attribute.');
}
public function getValue(): mixed
return $this->value;