Flake\Core\Model\Db::__construct PHP Méthode

__construct() public méthode

public __construct ( $sPrimary = false )
    function __construct($sPrimary = false)
    {
        if ($sPrimary === false) {
            # Object will be floating
            $this->initFloating();
            $this->bFloating = true;
        } else {
            $this->initByPrimary($sPrimary);
            $this->bFloating = false;
        }
    }