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
4a1391be
Commit
4a1391be
authored
Jul 11, 2016
by
Christopher Davis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Short Array Notation & Current PHPUnit Usage
parent
77e9eca9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
StatementTest.php
tests/Doctrine/Tests/DBAL/StatementTest.php
+4
-4
No files found.
tests/Doctrine/Tests/DBAL/StatementTest.php
View file @
4a1391be
...
...
@@ -108,8 +108,8 @@ class StatementTest extends \Doctrine\Tests\DbalTestCase
{
$name
=
'foo'
;
$var
=
'bar'
;
$values
=
array
(
$name
=>
$var
)
;
$types
=
array
(
$name
=>
\PDO
::
PARAM_STR
)
;
$values
=
[
$name
=>
$var
]
;
$types
=
[
$name
=>
\PDO
::
PARAM_STR
]
;
$sql
=
''
;
$logger
=
$this
->
createMock
(
SQLLogger
::
class
);
...
...
@@ -117,9 +117,9 @@ class StatementTest extends \Doctrine\Tests\DbalTestCase
->
method
(
'startQuery'
)
->
with
(
self
::
equalTo
(
$sql
),
self
::
equalTo
(
$values
),
self
::
equalTo
(
$types
));
$this
->
configuration
->
expects
(
$this
->
once
())
$this
->
configuration
->
expects
(
self
::
once
())
->
method
(
'getSQLLogger'
)
->
will
(
$this
->
returnValue
(
$logger
)
);
->
will
Return
(
$logger
);
$statement
=
new
Statement
(
$sql
,
$this
->
conn
);
$statement
->
bindParam
(
$name
,
$var
);
...
...
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