1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19:
<?php
namespace Teto\Object;
/**
* Interface for array compatible object
*
* @author USAMI Kenta <tadsan@zonu.me>
* @copyright 2016 Baguette HQ
* @license http://www.apache.org/licenses/LICENSE-2.0
*/
interface ToArrayInterface
{
/**
* @return array
*/
public function toArray();
}