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
96941383
Unverified
Commit
96941383
authored
Jan 28, 2018
by
Sergei Morozov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made enum classes final
parent
8da47ffe
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
ColumnCase.php
lib/Doctrine/DBAL/ColumnCase.php
+2
-2
FetchMode.php
lib/Doctrine/DBAL/FetchMode.php
+2
-2
ParameterType.php
lib/Doctrine/DBAL/ParameterType.php
+2
-2
No files found.
lib/Doctrine/DBAL/ColumnCase.php
View file @
96941383
...
...
@@ -5,7 +5,7 @@ namespace Doctrine\DBAL;
/**
* Contains portable column case conversions.
*/
class
ColumnCase
final
class
ColumnCase
{
/**
* Convert column names to upper case.
...
...
@@ -24,7 +24,7 @@ class ColumnCase
/**
* This class cannot be instantiated.
*/
final
private
function
__construct
()
private
function
__construct
()
{
}
}
lib/Doctrine/DBAL/FetchMode.php
View file @
96941383
...
...
@@ -5,7 +5,7 @@ namespace Doctrine\DBAL;
/**
* Contains statement fetch modes.
*/
class
FetchMode
final
class
FetchMode
{
/**
* Specifies that the fetch method shall return each row as an array indexed
...
...
@@ -63,7 +63,7 @@ class FetchMode
/**
* This class cannot be instantiated.
*/
final
private
function
__construct
()
private
function
__construct
()
{
}
}
lib/Doctrine/DBAL/ParameterType.php
View file @
96941383
...
...
@@ -5,7 +5,7 @@ namespace Doctrine\DBAL;
/**
* Contains statement parameter types.
*/
class
ParameterType
final
class
ParameterType
{
/**
* Represents the SQL NULL data type.
...
...
@@ -45,7 +45,7 @@ class ParameterType
/**
* This class cannot be instantiated.
*/
final
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