sehrgutesoftware/laravel5-api

View on GitHub
src/Laravel5_Api/Hooks/FormatCollection.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SehrGut\Laravel5_Api\Hooks;

/**
 * This hook is called after the records have been retrieved
 * from the db and stored into `$context->collection`.
 */
interface FormatCollection extends Hook
{
    /**
     * Apply the hook.
     *
     * @return void
     */
    public function formatCollection();
}