mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2026-01-14 12:00:49 -05:00
64 lines
1.1 KiB
PHP
64 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Product;
|
|
|
|
class ProductObserver
|
|
{
|
|
/**
|
|
* Handle the product "created" event.
|
|
*
|
|
* @param \App\Models\Product $product
|
|
* @return void
|
|
*/
|
|
public function created(Product $product)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the product "updated" event.
|
|
*
|
|
* @param \App\Models\Product $product
|
|
* @return void
|
|
*/
|
|
public function updated(Product $product)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the product "deleted" event.
|
|
*
|
|
* @param \App\Models\Product $product
|
|
* @return void
|
|
*/
|
|
public function deleted(Product $product)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the product "restored" event.
|
|
*
|
|
* @param \App\Models\Product $product
|
|
* @return void
|
|
*/
|
|
public function restored(Product $product)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the product "force deleted" event.
|
|
*
|
|
* @param \App\Models\Product $product
|
|
* @return void
|
|
*/
|
|
public function forceDeleted(Product $product)
|
|
{
|
|
//
|
|
}
|
|
}
|