Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
dc6bad0d
Commit
dc6bad0d
authored
Nov 14, 2013
by
till
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix: coding standard & missing assertion
parent
7d77a3fb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
Connection.php
lib/Doctrine/DBAL/Connection.php
+2
-1
ConnectionTest.php
.../Doctrine/Tests/DBAL/Functional/Mysqli/ConnectionTest.php
+1
-1
No files found.
lib/Doctrine/DBAL/Connection.php
View file @
dc6bad0d
...
@@ -1497,9 +1497,10 @@ class Connection implements DriverConnection
...
@@ -1497,9 +1497,10 @@ class Connection implements DriverConnection
*/
*/
public
function
ping
()
public
function
ping
()
{
{
if
(
!
(
$this
->
_conn
instanceof
PingableConnection
))
{
if
(
!
(
$this
->
_conn
instanceof
PingableConnection
))
{
throw
ConnectionException
::
unsupportedFeature
(
'ping'
);
throw
ConnectionException
::
unsupportedFeature
(
'ping'
);
}
}
return
$this
->
_conn
->
ping
();
return
$this
->
_conn
->
ping
();
}
}
}
}
tests/Doctrine/Tests/DBAL/Functional/Mysqli/ConnectionTest.php
View file @
dc6bad0d
...
@@ -42,7 +42,7 @@ class ConnectionTest extends \Doctrine\Tests\DbalFunctionalTestCase
...
@@ -42,7 +42,7 @@ class ConnectionTest extends \Doctrine\Tests\DbalFunctionalTestCase
public
function
testPing
()
public
function
testPing
()
{
{
$conn
=
$this
->
getConnection
(
array
());
$conn
=
$this
->
getConnection
(
array
());
$
conn
->
ping
(
);
$
this
->
assertTrue
(
$conn
->
ping
()
);
}
}
private
function
getConnection
(
array
$driverOptions
)
private
function
getConnection
(
array
$driverOptions
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment