Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
sentry
/
sentry
/
src
/
HttpClient
:
SerializableInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace Sentry\Serializer; /** * This interface can be used to customize how an object is serialized in the * payload of an event. */ interface SerializableInterface { /** * Returns an array representation of the object for Sentry. * * @return mixed[]|null */ public function toSentry(): ?array; }