Skip to content

Commit

Permalink
Merge pull request #6161 from kenjis/fix-docs-ns-app-config
Browse files Browse the repository at this point in the history
docs: fix wrong namespace `App\Config`
  • Loading branch information
samsonasik committed Jun 20, 2022
2 parents fe1dbc2 + 4dedc8b commit e8f2080
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion user_guide_src/source/general/errors/005.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Config;
namespace Config;

use CodeIgniter\Config\BaseConfig;

Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/general/errors/006.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Config;
namespace Config;

use CodeIgniter\Config\BaseConfig;

Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/incoming/routing/043.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// First you need to enable sorting.
$routes->setPrioritize();

// App\Config\Routes
// Config\Routes
$routes->get('(.*)', 'Posts::index', ['priority' => 1]);

// Modules\Acme\Config\Routes
Expand Down

0 comments on commit e8f2080

Please sign in to comment.