File: /var/www/vhost/disk-apps/alq-cali.bikenow.co/vendor/jms/serializer/src/Annotation/MaxDepth.php
<?php
declare(strict_types=1);
namespace JMS\Serializer\Annotation;
/**
* @Annotation
* @Target({"PROPERTY","METHOD","ANNOTATION"})
*/
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::TARGET_PROPERTY)]
final class MaxDepth
{
use AnnotationUtilsTrait;
/**
* @Required
* @var int
*/
public $depth;
public function __construct($values = [], int $depth = 0)
{
$this->loadAnnotationParameters(get_defined_vars());
}
}