Skip to content

Commit

Permalink
docs: fix factory classname
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Nov 30, 2023
1 parent 3e076d3 commit b555ce2
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/database/utilities/001.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

$db = db_connect();
$dbutil = \CodeIgniter\Database\Config::utils();
$dbutil = \Config\Database::utils();

$query = $db->query('SELECT * FROM mytable');

Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/database/utilities/002.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

$dbutil = \CodeIgniter\Database\Config::utils();
$dbutil = \Config\Database::utils();
2 changes: 1 addition & 1 deletion user_guide_src/source/database/utilities/003.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

$dbutil = \CodeIgniter\Database\Config::utils('group_name');
$dbutil = \Config\Database::utils('group_name');

0 comments on commit b555ce2

Please sign in to comment.