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
bde444d1
Commit
bde444d1
authored
Jan 29, 2018
by
Gabriel Caruso
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve arrays type hints
parent
22a7582d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
ConnectionTest.php
tests/Doctrine/Tests/DBAL/ConnectionTest.php
+1
-1
ResultCacheTest.php
tests/Doctrine/Tests/DBAL/Functional/ResultCacheTest.php
+1
-1
DbalPerformanceTestListener.php
tests/Doctrine/Tests/DbalPerformanceTestListener.php
+1
-1
ConnectionMock.php
tests/Doctrine/Tests/Mocks/ConnectionMock.php
+1
-1
No files found.
tests/Doctrine/Tests/DBAL/ConnectionTest.php
View file @
bde444d1
...
...
@@ -31,7 +31,7 @@ class ConnectionTest extends \Doctrine\Tests\DbalTestCase
protected
$_conn
=
null
;
/**
* @var
array
* @var
string[]
*/
protected
$params
=
array
(
'driver'
=>
'pdo_mysql'
,
...
...
tests/Doctrine/Tests/DBAL/Functional/ResultCacheTest.php
View file @
bde444d1
...
...
@@ -11,7 +11,7 @@ use Doctrine\DBAL\FetchMode;
class
ResultCacheTest
extends
\Doctrine\Tests\DbalFunctionalTestCase
{
/**
* @var
Type
* @var
int[][]|string[][]
*/
private
$expectedResult
=
array
(
array
(
'test_int'
=>
100
,
'test_string'
=>
'foo'
),
array
(
'test_int'
=>
200
,
'test_string'
=>
'bar'
),
array
(
'test_int'
=>
300
,
'test_string'
=>
'baz'
));
...
...
tests/Doctrine/Tests/DbalPerformanceTestListener.php
View file @
bde444d1
...
...
@@ -10,7 +10,7 @@ namespace Doctrine\Tests;
class
DbalPerformanceTestListener
extends
\PHPUnit\Framework\BaseTestListener
{
/**
* @var
array
* @var
string[][]
*/
private
$timings
=
[];
...
...
tests/Doctrine/Tests/Mocks/ConnectionMock.php
View file @
bde444d1
...
...
@@ -20,7 +20,7 @@ class ConnectionMock extends \Doctrine\DBAL\Connection
private
$_lastInsertId
=
0
;
/**
* @var
array
* @var
string[][]
*/
private
$_inserts
=
array
();
...
...
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