Tac Tacelosky
Tac Tacelosky
Any reason not to add version 7 to composer.json? symfony/twig-bundle" : "^3.0|^4.0|^5.0|^6.0",
This fails, because addChild() return void ```php public function addChild(MenuItemInterface $child): void { $child->setParent($this); $this->children[] = $child; } ``` ```php $blog->addChild( new MenuItemModel('ChildOneItemId', 'ChildOneDisplayName', 'child_1_route', [], 'fas fa-rss-square') )->addChild( new...
It looks like there's a BunnyStorage adapter available at https://github.com/PlatformCommunity/flysystem-bunnycdn Can this be added to the list of Cloud Providers? Is there reason in particular it wouldn't work with the...
I want to minimize calls to S3 to get a large list which rarely changes. Is there a way to configure a cache? Perhaps DirectoryListing can be serialized and I...
```php $index = new Index('blog', [ 'title' => new Field\TextField('title', sortable: true), 'tags' => new Field\TextField('tags', multiple: true, filterable: true), 'internalNote' => new Field\TextField('internalNote', searchable: false), ]); ``` In the...
Fixes #73
$flickr->uploader()->replace('/path/to/photo.jpg', 44333812150); Should probably go to /** @var string */ protected $replaceEndpoint = 'https://up.flickr.com/services/replace/'; Instead, it goes to the upload endpoint /** @var string */ protected $uploadEndpoint = 'https://up.flickr.com/services/upload/'; I...