File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed
Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -104,17 +104,8 @@ setting()->forget('App.siteName');
104104
105105The following are known limitations of the library:
106106
107- 1 . Using the ` setting() ` helper method does not support setting a ` null ` value on a property. For most cases, you are
108- better off forgetting the value or setting it to an empty string. If you need to, you can set it by grabbing
109- the service and using the ` set() ` method:
110-
111- ``` php
112- service('settings')->set('App.siteName', null);
113- setting()->set('App.siteName', null);
114- ```
115-
116- 2 . You can currently only store a single setting at a time. While the ` DatabaseHandler ` uses a local cache to
107+ 1 . You can currently only store a single setting at a time. While the ` DatabaseHandler ` uses a local cache to
117108keep performance as high as possible for reads, writes must be done one at a time.
118- 3 . You can only access the first level within a property directly. In most config classes this is a non-issue,
109+ 2 . You can only access the first level within a property directly. In most config classes this is a non-issue,
119110since the properties are simple values. Some config files, like the ` database ` file, contain properties that
120111are arrays.
You can’t perform that action at this time.
0 commit comments