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
f399c022
Unverified
Commit
f399c022
authored
May 13, 2018
by
Sergei Morozov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignore code coverage of private constructors of static classes
parent
93664d0c
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
26 additions
and
0 deletions
+26
-0
ColumnCase.php
lib/Doctrine/DBAL/ColumnCase.php
+2
-0
DriverManager.php
lib/Doctrine/DBAL/DriverManager.php
+2
-0
Events.php
lib/Doctrine/DBAL/Events.php
+2
-0
FetchMode.php
lib/Doctrine/DBAL/FetchMode.php
+2
-0
LockMode.php
lib/Doctrine/DBAL/LockMode.php
+2
-0
ParameterType.php
lib/Doctrine/DBAL/ParameterType.php
+2
-0
DateIntervalUnit.php
lib/Doctrine/DBAL/Platforms/DateIntervalUnit.php
+3
-0
TrimMode.php
lib/Doctrine/DBAL/Platforms/TrimMode.php
+3
-0
Dumper.php
lib/Doctrine/DBAL/Tools/Dumper.php
+2
-0
TransactionIsolationLevel.php
lib/Doctrine/DBAL/TransactionIsolationLevel.php
+3
-0
Types.php
lib/Doctrine/DBAL/Types/Types.php
+3
-0
No files found.
lib/Doctrine/DBAL/ColumnCase.php
View file @
f399c022
...
@@ -25,6 +25,8 @@ final class ColumnCase
...
@@ -25,6 +25,8 @@ final class ColumnCase
/**
/**
* This class cannot be instantiated.
* This class cannot be instantiated.
*
* @codeCoverageIgnore
*/
*/
private
function
__construct
()
private
function
__construct
()
{
{
...
...
lib/Doctrine/DBAL/DriverManager.php
View file @
f399c022
...
@@ -77,6 +77,8 @@ final class DriverManager
...
@@ -77,6 +77,8 @@ final class DriverManager
/**
/**
* Private constructor. This class cannot be instantiated.
* Private constructor. This class cannot be instantiated.
*
* @codeCoverageIgnore
*/
*/
private
function
__construct
()
private
function
__construct
()
{
{
...
...
lib/Doctrine/DBAL/Events.php
View file @
f399c022
...
@@ -11,6 +11,8 @@ final class Events
...
@@ -11,6 +11,8 @@ final class Events
{
{
/**
/**
* Private constructor. This class cannot be instantiated.
* Private constructor. This class cannot be instantiated.
*
* @codeCoverageIgnore
*/
*/
private
function
__construct
()
private
function
__construct
()
{
{
...
...
lib/Doctrine/DBAL/FetchMode.php
View file @
f399c022
...
@@ -64,6 +64,8 @@ final class FetchMode
...
@@ -64,6 +64,8 @@ final class FetchMode
/**
/**
* This class cannot be instantiated.
* This class cannot be instantiated.
*
* @codeCoverageIgnore
*/
*/
private
function
__construct
()
private
function
__construct
()
{
{
...
...
lib/Doctrine/DBAL/LockMode.php
View file @
f399c022
...
@@ -14,6 +14,8 @@ class LockMode
...
@@ -14,6 +14,8 @@ class LockMode
/**
/**
* Private constructor. This class cannot be instantiated.
* Private constructor. This class cannot be instantiated.
*
* @codeCoverageIgnore
*/
*/
final
private
function
__construct
()
final
private
function
__construct
()
{
{
...
...
lib/Doctrine/DBAL/ParameterType.php
View file @
f399c022
...
@@ -51,6 +51,8 @@ final class ParameterType
...
@@ -51,6 +51,8 @@ final class ParameterType
/**
/**
* This class cannot be instantiated.
* This class cannot be instantiated.
*
* @codeCoverageIgnore
*/
*/
private
function
__construct
()
private
function
__construct
()
{
{
...
...
lib/Doctrine/DBAL/Platforms/DateIntervalUnit.php
View file @
f399c022
...
@@ -22,6 +22,9 @@ final class DateIntervalUnit
...
@@ -22,6 +22,9 @@ final class DateIntervalUnit
public
const
YEAR
=
'YEAR'
;
public
const
YEAR
=
'YEAR'
;
/**
* @codeCoverageIgnore
*/
private
function
__construct
()
private
function
__construct
()
{
{
}
}
...
...
lib/Doctrine/DBAL/Platforms/TrimMode.php
View file @
f399c022
...
@@ -14,6 +14,9 @@ final class TrimMode
...
@@ -14,6 +14,9 @@ final class TrimMode
public
const
BOTH
=
3
;
public
const
BOTH
=
3
;
/**
* @codeCoverageIgnore
*/
private
function
__construct
()
private
function
__construct
()
{
{
}
}
...
...
lib/Doctrine/DBAL/Tools/Dumper.php
View file @
f399c022
...
@@ -40,6 +40,8 @@ final class Dumper
...
@@ -40,6 +40,8 @@ final class Dumper
{
{
/**
/**
* Private constructor (prevents instantiation).
* Private constructor (prevents instantiation).
*
* @codeCoverageIgnore
*/
*/
private
function
__construct
()
private
function
__construct
()
{
{
...
...
lib/Doctrine/DBAL/TransactionIsolationLevel.php
View file @
f399c022
...
@@ -26,6 +26,9 @@ final class TransactionIsolationLevel
...
@@ -26,6 +26,9 @@ final class TransactionIsolationLevel
*/
*/
public
const
SERIALIZABLE
=
4
;
public
const
SERIALIZABLE
=
4
;
/**
* @codeCoverageIgnore
*/
private
function
__construct
()
private
function
__construct
()
{
{
}
}
...
...
lib/Doctrine/DBAL/Types/Types.php
View file @
f399c022
...
@@ -37,6 +37,9 @@ final class Types
...
@@ -37,6 +37,9 @@ final class Types
/** @deprecated json_array type is deprecated, use {@see self::JSON} instead. */
/** @deprecated json_array type is deprecated, use {@see self::JSON} instead. */
public
const
JSON_ARRAY
=
'json_array'
;
public
const
JSON_ARRAY
=
'json_array'
;
/**
* @codeCoverageIgnore
*/
private
function
__construct
()
private
function
__construct
()
{
{
}
}
...
...
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