Skip to content

Instantly share code, notes, and snippets.

@vudaltsov
Created October 9, 2020 00:31
Show Gist options
  • Save vudaltsov/b9fb19d792a92a6219002d5988383692 to your computer and use it in GitHub Desktop.
Save vudaltsov/b9fb19d792a92a6219002d5988383692 to your computer and use it in GitHub Desktop.
<?php
/**
* @return array<string, mixed>
*/
function objectToArray(object $object): array
{
return (fn (): array => get_object_vars($this))->call($object);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment