Skip to content

Instantly share code, notes, and snippets.

@jlamim
Created November 28, 2016 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlamim/2c9d48266c18a34c7033e98a1e4fcb00 to your computer and use it in GitHub Desktop.
Save jlamim/2c9d48266c18a34c7033e98a1e4fcb00 to your computer and use it in GitHub Desktop.
Live CodeIgniter 4 - Database
<?php
use \CodeIgniter\Database\ConnectionInterface;
class UserModel
{
protected $db;
public function __construct(ConnectionInterface &$db)
{
$this->db =& $db;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment