3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-07 01:15:46 +00:00
Files
snipe-it/app/Models/Traits/Acceptable.php
2024-05-29 12:38:15 +01:00

35 lines
851 B
PHP

<?php
namespace App\Models\Traits;
use App\Models\User;
use Illuminate\Support\Facades\Log;
/**
* This trait allows models to have a callback after their checkout gets accepted or declined.
*
* @author Till Deeke <kontakt@tilldeeke.de>
*/
trait Acceptable
{
/**
* Run after the checkout acceptance was accepted by the user
*
* @param User $acceptedBy
* @param string $signature
*/
public function acceptedCheckout(User $acceptedBy, $signature, $filename = null)
{
Log::debug('acceptedCheckout in Acceptable trait fired, tho it doesn\'t do anything?');
}
/**
* Run after the checkout acceptance was declined by the user
*
* @param User $acceptedBy
* @param string $signature
*/
public function declinedCheckout(User $declinedBy, $signature)
{
}
}