Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
vendor
/
vich
/
uploader-bundle
/
Util
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/vendor/vich/uploader-bundle/Util/ClassUtils.php
<?php namespace Vich\UploaderBundle\Util; use Doctrine\Common\Util\ClassUtils as DoctrineClassUtils; class ClassUtils { /** * This class should not be instantiated. */ private function __construct() { } /** * Gets class name for the object, taking doctrine proxies into account. * * @param object $object The object * * @return string The FQCN of the given object */ public static function getClass($object): string { if (\class_exists(DoctrineClassUtils::class)) { return DoctrineClassUtils::getClass($object); } return \get_class($object); } }