We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81859f2 commit 954cc0dCopy full SHA for 954cc0d
user_guide_src/source/general/configuration.rst
@@ -31,7 +31,8 @@ You can access configuration files for your classes in several different ways.
31
$config = config('Pager');
32
33
// Access config class with namespace
34
- $config = config( 'Config\\Pager' );
+ $config = config('Config\\Pager');
35
+ $config = config(\Config\Pager::class);
36
37
// Creating a new object with config function
38
$config = config('Pager', false);
0 commit comments