From 8dbbf74550af7973385d2599cb339e4ce108176a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Tue, 27 Jun 2017 10:17:57 +0200 Subject: [PATCH] [ticket/15253] Add experimental annotation PHPBB3-15253 --- phpBB/phpbb/storage/adapter/local.php | 3 +++ phpBB/phpbb/storage/storage.php | 3 +++ 2 files changed, 6 insertions(+) diff --git a/phpBB/phpbb/storage/adapter/local.php b/phpBB/phpbb/storage/adapter/local.php index 4673dbca6e..dab6fbc34f 100644 --- a/phpBB/phpbb/storage/adapter/local.php +++ b/phpBB/phpbb/storage/adapter/local.php @@ -16,6 +16,9 @@ namespace phpbb\storage\adapter; use phpbb\storage\exception\exception; use phpbb\filesystem\exception\filesystem_exception; +/** + * @internal Experimental + */ class local implements adapter_interface { /** diff --git a/phpBB/phpbb/storage/storage.php b/phpBB/phpbb/storage/storage.php index 1f5e751bbb..7f0ea4a6dc 100644 --- a/phpBB/phpbb/storage/storage.php +++ b/phpBB/phpbb/storage/storage.php @@ -13,6 +13,9 @@ namespace phpbb\storage; +/** + * @internal Experimental + */ class storage { protected $adapter;