haldayne/boost

View on GitHub
src/Contract/Jsonable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Haldayne\Boost\Contract;

interface Jsonable
{
    /**
     * Return a JSON representation of the object.
     */
    public function toJson();
}