sehrgutesoftware/laravel5-api

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SehrGut\Laravel5_Api\Hooks;

/**
 * A dummy hook for testing that is regularly not called from the controller.
 */
interface TestHook extends Hook
{
    /**
     * Apply the hook.
     *
     * @return void
     */
    public function testHook();
}