Merge pull request #6049 from nextcloud/backport/6048/stable20

[stable20] fixes php code in storage docs
This commit is contained in:
Morris Jobke 2021-01-18 22:27:39 +01:00 committed by GitHub
commit de3dbe1bf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ All methods return a Folder object on which files and folders can be accessed, o
<?php
namespace OCA\MyApp\Storage;
use OCP\Files\IRootFolder
use OCP\Files\IRootFolder;
class AuthorStorage {
@ -64,7 +64,7 @@ Files and folders can also be accessed by id, by calling the **getById** method
<?php
namespace OCA\MyApp\Storage;
use OCP\Files\IRootFolder
use OCP\Files\IRootFolder;
class AuthorStorage {