Skip to content

Commit 82dca13

Browse files
committed
Update docs
1 parent da51b11 commit 82dca13

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/documentation/digging-deeper/the-config-instance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ you need to access the `Config` directly you should do so using the `::instance(
99

1010
## Defaults
1111

12-
The only default that is currently expected to be used is the default `Connection`. This is set to the local machine
13-
that `PHP` is running on.
12+
The only default setting that I'm currently outlining is the connection. If not defined then the default connection is
13+
the machine that is currently running PHP.
1414

1515
``` php
1616
# config/connections.php
@@ -65,7 +65,7 @@ new Config($connections);
6565

6666
Either method above will instantiate the `Config` object to be used later. Again, be sure to do this prior to any
6767
calls to assure predictable behavior. If you use `Config::instance($connections)` the new connections will simply be
68-
merged in to an already started instance.
68+
merged in to an already started instance, if one exists, or a new instance will be started with the given configuration.
6969

7070
Accessing the configuration object in the following way keeps you from trampling over the current configuration and
7171
allows you to make global changes.

0 commit comments

Comments
 (0)