-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Refactored MysqlEngine, created PdoEngine, added Postgres support #41
Conversation
@josegonzalez The PdoEngine refactoring and Postgres support is done, would be great if you could give it a look. I'm not sure what to do about the coveralls error - because effectively, test coverage didn't decrease. |
} | ||
|
||
/** | ||
* @covers josegonzalez\Queuesadilla\Engine\PdoEngine::connect |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the reason test coverage went down is that the MysqlEngine is no longer covered here.
Here we go :) |
@@ -229,22 +229,17 @@ public function quoteIdentifier($identifier) | |||
return $this->startQuote . $identifier . $this->endQuote; | |||
} | |||
|
|||
// string.string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not instead pull the regex out into a variable? That should help explain what the regex is for.
Thanks! |
In reference to #30