sehrgutesoftware/laravel5-api

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SehrGut\Laravel5_Api\Hooks;

/**
 * This Hook is called before a resource is updated (update action).
 */
interface BeforeUpdate extends Hook
{
    /**
     * Apply the hook.
     *
     * @return void
     */
    public function beforeUpdate();
}