Skip to content

Commit

Permalink
Final private constructurs aren't executable
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Schmid committed Dec 7, 2017
1 parent 1b4b890 commit e75f7a8
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Parser/Doctrine/FromPartialParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

abstract class FromPartialParser
{
/**
* @codeCoverageIgnore
*/
final private function __construct()
{
}
Expand Down
3 changes: 3 additions & 0 deletions src/Parser/Doctrine/JoinPartialParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

abstract class JoinPartialParser
{
/**
* @codeCoverageIgnore
*/
final private function __construct()
{
}
Expand Down
3 changes: 3 additions & 0 deletions src/Parser/Doctrine/OrderPartialParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ abstract class OrderPartialParser
*/
private static $queryBuilderFieldsToOrderAlias;

/**
* @codeCoverageIgnore
*/
final private function __construct()
{
}
Expand Down
3 changes: 3 additions & 0 deletions src/Parser/Doctrine/SelectPartialParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ abstract class SelectPartialParser
{
const OBJECT_WORD = 'object';

/**
* @codeCoverageIgnore
*/
final private function __construct()
{
}
Expand Down
3 changes: 3 additions & 0 deletions src/Parser/Doctrine/WherePartialParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ abstract class WherePartialParser
*/
private static $queryBuilderFieldsToWhereAlias;

/**
* @codeCoverageIgnore
*/
final private function __construct()
{
}
Expand Down

0 comments on commit e75f7a8

Please sign in to comment.