flexisip-account-manager/flexiapi/config/account_service_hooks.php.example
2024-01-08 16:48:59 +01:00

22 lines
No EOL
387 B
Text

<?php
use App\Account;
use App\Password;
use Illuminate\Http\Request;
/**
* This file contains hooks functions used by the Account Service
*/
/**
* @brief Run specific code once a fresh account is created
* @param Request $request
* @param Account $account
* @return void
*/
function accountServiceAccountCreatedHook(Request $request, Account $account)
{
/*
*/
}