gdbots/common-php

View on GitHub
src/Common/ToArray.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Gdbots\Common;

interface ToArray
{
    /**
     * Get the array representation of an object
     *
     * @return array
     */
    public function toArray();
}