<?php
namespace Maatwebsite\Excel\Transactions;
class NullTransactionHandler implements TransactionHandler
{
/**
* @param callable $callback
* @return mixed
*/
public function __invoke(callable $callback)
{
return $callback();
}
}
For code examples and implementation guides, please refer to the “Examples” section on our developer portal. Go to GitHub Repository