You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello , i would like to know what are the best practice for executing action inside action as job :
class DoCheck
{
use AsAction;
public function handle(Transaction $transaction): void
{
....
DoOneTimePaymentFromTransaction::run($transaction);
TransactionNotifierAction::run($transaction);
AllocateManagerCommission::run($transaction);
}
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello , i would like to know what are the best practice for executing action inside action as job :
....
sometime this result in a big number of failed job , and i dont understand what i am doing wrong
Beta Was this translation helpful? Give feedback.
All reactions