?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/schtroumpf.fr/modules/ps_mbo/vendor/sentry/sentry/src/Serializer/



?? Go up: /home/webdevt/www/schtroumpf.fr/modules/ps_mbo/vendor/sentry/sentry/src

?? Viewing: SerializerInterface.php

<?php

declare(strict_types=1);

namespace Sentry\Serializer;

/**
 * Basic serializer for the event data.
 */
interface SerializerInterface
{
    /**
     * Serialize an object (recursively) into something safe to be sent in an Event.
     *
     * @param mixed $value
     *
     * @return string|bool|float|int|object|mixed[]|null
     */
    public function serialize($value);
}


??

??