sehrgutesoftware/laravel5-api

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SehrGut\Laravel5_Api\Hooks;

/**
 * This Hook is called after a resource is saved (on store & update actions).
 */
interface AfterSave extends Hook
{
    /**
     * Apply the hook.
     *
     * @return void
     */
    public function afterSave();
}