phpjuice/paypal-checkout-sdk

View on GitHub
src/Contracts/Jsonable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace PayPal\Checkout\Contracts;

interface Jsonable
{
    /**
     * Convert the object to its JSON representation.
     *
     * @param  int  $options
     *
     * @return string
     */
    public function toJson(int $options = 0): string;
}