PHP code example of 3slab / vdm-library-flysystem-transport-bundle
1. Go to this page and download the library: Download 3slab/vdm-library-flysystem-transport-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
3slab / vdm-library-flysystem-transport-bundle example snippets
namespace App\Executor;
namespace Vdm\Bundle\LibraryFlysystemTransportBundle\Executor;
use League\Flysystem\FilesystemReader;
use Symfony\Component\Messenger\Envelope;
use Vdm\Bundle\LibraryFlysystemTransportBundle\Message\FlysystemMessage;
class CustomFlysystemExecutor extends DefaultFlysystemExecutor
{
/**
* {@inheritDoc}
* @throws \League\Flysystem\FilesystemException
*/
public function get(): iterable
{
$files = $this->listContents('/', FilesystemReader::LIST_DEEP);
usort($files, function ($a, $b) {
return ($a->path() < $b->path()) ? -1 : 1;
});
foreach ($files as $key => $file) {
$file = $this->download($file);
$isLast = array_key_last($files) === $key;
$message = new FlysystemMessage($file);
yield $this->getEnvelope($message, $isLast);
}
}
}