peakphp/framework

View on GitHub
src/Blueprint/Common/Arrayable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Peak\Blueprint\Common;

interface Arrayable
{
    /**
     * Get the instance as an array.
     * @return array
     */
    public function toArray();
}