yrizos/echidna

View on GitHub
src/ResultInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Echidna;

interface ResultInterface
{

    public function setMapper(MapperInterface $mapper);

    public function getMapper();

    public function toArray();
}