27 if ($this->processors) {
28 foreach ($this->processors as $processor) {
29 $record = call_user_func($processor, $record);
33 foreach ($this->handlers as
$handler) {
35 $handler->handle($record);
51 foreach ($this->handlers as
$handler) {
53 $handler->handleBatch($records);
handle(array $record)
{Handles a record.All records may be passed to this method, and the handler should discard those that...
Forwards records to multiple handlers.
Forwards records to multiple handlers suppressing failures of each handler and continuing through to ...
Create styles array
The data for the language used.
handleBatch(array $records)
{Handles a set of records at once.The records to handle (an array of record arrays)} ...