Oleksandr Shtovba
Oleksandr Shtovba
I use `v0.7.7`, code with generics fails: ``` Error parsing model.go: model.go:41:27: expected ';', found '[' (and 2 more errors) model.go:1: running "easyjson": exit status 1 ``` Any plans to...
``` use Hypweb\Flysystem\GoogleDrive\GoogleDriveAdapter; use League\Flysystem\Filesystem; $client = new Google_Client(); $client->setAuthConfigFile('path_to_json_file'); $client->setScopes(['https://www.googleapis.com/auth/drive']); $googleDriveFileManager = new Filesystem( new GoogleDriveAdapter( new Google_Service_Drive($client), 'root' ) ); $result = $googleDriveFileManager->createDir('_test'); echo $result;exit; // displays 1...
This micro MR fixes wrong log where it says `Windows` instead of `Web` when target is `web`.
### Describe the bug ### Steps to reproduce 1. Prepare valid and bad data in any order 2. Prepare batch 3. Call AppendStruct in loop 4. See logs ### Expected...