1: <?php
2: namespace Contrib\Bundle\CoverallsBundle\Entity;
3:
4: /**
5: * Array convertable entity.
6: *
7: * @author Kitamura Satoshi <with.no.parachute@gmail.com>
8: */
9: interface ArrayConvertable
10: {
11: /**
12: * Convert to an array.
13: *
14: * @return array
15: */
16: public function toArray();
17: }
18: