X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsymfony%2Fserializer%2FAnnotation%2FMaxDepth.php;h=a274c20d85283b2853b2addc784a02a392b20310;hp=1f41948d6da25996e12821322fee63a0a11d95bb;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hpb=74df008bdbb3a11eeea356744f39b802369bda3c diff --git a/vendor/symfony/serializer/Annotation/MaxDepth.php b/vendor/symfony/serializer/Annotation/MaxDepth.php index 1f41948d6..a274c20d8 100644 --- a/vendor/symfony/serializer/Annotation/MaxDepth.php +++ b/vendor/symfony/serializer/Annotation/MaxDepth.php @@ -31,11 +31,11 @@ class MaxDepth public function __construct(array $data) { if (!isset($data['value'])) { - throw new InvalidArgumentException(sprintf('Parameter of annotation "%s" should be set.', get_class($this))); + throw new InvalidArgumentException(sprintf('Parameter of annotation "%s" should be set.', \get_class($this))); } - if (!is_int($data['value']) || $data['value'] <= 0) { - throw new InvalidArgumentException(sprintf('Parameter of annotation "%s" must be a positive integer.', get_class($this))); + if (!\is_int($data['value']) || $data['value'] <= 0) { + throw new InvalidArgumentException(sprintf('Parameter of annotation "%s" must be a positive integer.', \get_class($this))); } $this->maxDepth = $data['value'];