haldayne/boost

View on GitHub
src/Contract/Arrayable.php

Summary

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

interface Arrayable
{
    /**
     * Return a native PHP array representation of the object.
     */
    public function toArray();
}