mirror of
https://github.com/danog/parallel.git
synced 2025-01-09 14:18:23 +01:00
8 lines
119 B
PHP
8 lines
119 B
PHP
<?php
|
|
|
|
use Amp\Parallel\Sync\Channel;
|
|
|
|
return function (Channel $channel, string $data): string {
|
|
return $data;
|
|
};
|