Skip to content

Commit 88158a7

Browse files
committed
Nuke cache adapter from docs too
1 parent 798d91d commit 88158a7

4 files changed

Lines changed: 9 additions & 104 deletions

File tree

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,8 @@ to interact with your storage.
9999
[AWS S3](https://github.com/thephpleague/flysystem-bundle/blob/master/docs/2-cloud-storage-providers.md#aws-s3),
100100
[Google Cloud Storage](https://flysystem.thephpleague.com/v2/docs/adapter/gcs/),
101101
3. [Interacting with FTP and SFTP servers](https://github.com/thephpleague/flysystem-bundle/blob/master/docs/3-interacting-with-ftp-and-sftp-servers.md)
102-
4. [Caching metadata in Symfony cache](https://github.com/thephpleague/flysystem-bundle/blob/master/docs/4-caching-metadata-in-symfony-cache.md)
103-
5. [Using a lazy adapter to switch storage backend using an environment variable](https://github.com/thephpleague/flysystem-bundle/blob/master/docs/5-using-lazy-adapter-to-switch-at-runtime.md)
104-
6. [Creating a custom adapter](https://github.com/thephpleague/flysystem-bundle/blob/master/docs/6-creating-a-custom-adapter.md)
102+
4. [Using a lazy adapter to switch storage backend using an environment variable](https://github.com/thephpleague/flysystem-bundle/blob/master/docs/5-using-lazy-adapter-to-switch-at-runtime.md)
103+
5. [Creating a custom adapter](https://github.com/thephpleague/flysystem-bundle/blob/master/docs/6-creating-a-custom-adapter.md)
105104

106105
* [Security issue disclosure procedure](https://github.com/thephpleague/flysystem-bundle/blob/master/docs/A-security-disclosure-procedure.md)
107106
* [Configuration reference](https://github.com/thephpleague/flysystem-bundle/blob/master/docs/B-configuration-reference.md)

docs/3-interacting-with-ftp-and-sftp-servers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ flysystem:
6464
6565
## Next
6666
67-
[Caching metadata in Symfony cache](https://github.com/thephpleague/flysystem-bundle/blob/master/docs/4-caching-metadata-in-symfony-cache.md)
67+
[Using a lazy adapter to switch storage backend using an environment variable](https://github.com/thephpleague/flysystem-bundle/blob/master/docs/5-using-lazy-adapter-to-switch-at-runtime.md)

docs/4-caching-metadata-in-symfony-cache.md

Lines changed: 0 additions & 88 deletions
This file was deleted.

docs/B-configuration-reference.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,9 @@ flysystem:
1111
prefix: 'optional/path/prefix'
1212

1313
users2.storage:
14-
adapter: 'cache'
15-
options:
16-
store: 'cache.app'
17-
source: 'fs_local'
18-
19-
users3.storage:
2014
adapter: 'custom_adapter'
2115

22-
users4.storage:
16+
users3.storage:
2317
adapter: 'ftp'
2418
options:
2519
host: 'ftp.example.com'
@@ -32,14 +26,14 @@ flysystem:
3226
timeout: 30
3327
ignore_passive_address: ~
3428

35-
users5.storage:
29+
users4.storage:
3630
adapter: 'gcloud'
3731
options:
3832
client: 'gcloud_client_service'
3933
bucket: 'bucket_name'
4034
prefix: 'optional/path/prefix'
4135

42-
users6.storage:
36+
users5.storage:
4337
adapter: 'local'
4438
options:
4539
directory: '%kernel.project_dir%/storage'
@@ -53,13 +47,13 @@ flysystem:
5347
public: 0755
5448
private: 0700
5549

56-
users7.storage:
50+
users6.storage:
5751
adapter: 'memory'
5852

59-
users8.storage:
53+
users7.storage:
6054
adapter: 'null'
6155

62-
users9.storage:
56+
users8.storage:
6357
adapter: 'sftp'
6458
options:
6559
host: 'example.com'

0 commit comments

Comments
 (0)