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
29f29d81
Commit
29f29d81
authored
Aug 07, 2012
by
Christophe Coevoet
Committed by
Benjamin Eberlei
Sep 05, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a typo in a method name
parent
a880baf3
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
AbstractPlatform.php
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
+1
-1
PostgreSqlPlatform.php
lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php
+1
-1
SQLServerPlatform.php
lib/Doctrine/DBAL/Platforms/SQLServerPlatform.php
+1
-1
GuidType.php
lib/Doctrine/DBAL/Types/GuidType.php
+1
-1
No files found.
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
View file @
29f29d81
...
@@ -237,7 +237,7 @@ abstract class AbstractPlatform
...
@@ -237,7 +237,7 @@ abstract class AbstractPlatform
*
*
* @return string
* @return string
*/
*/
public
function
getGuidTypeDeclartionSQL
(
array
$field
)
public
function
getGuidTypeDeclar
a
tionSQL
(
array
$field
)
{
{
return
$this
->
getVarcharTypeDeclarationSQL
(
$field
);
return
$this
->
getVarcharTypeDeclarationSQL
(
$field
);
}
}
...
...
lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php
View file @
29f29d81
...
@@ -578,7 +578,7 @@ class PostgreSqlPlatform extends AbstractPlatform
...
@@ -578,7 +578,7 @@ class PostgreSqlPlatform extends AbstractPlatform
/**
/**
* {@inheritDoc}
* {@inheritDoc}
*/
*/
public
function
getGuidTypeDeclartionSQL
(
array
$field
)
public
function
getGuidTypeDeclar
a
tionSQL
(
array
$field
)
{
{
return
'UUID'
;
return
'UUID'
;
}
}
...
...
lib/Doctrine/DBAL/Platforms/SQLServerPlatform.php
View file @
29f29d81
...
@@ -605,7 +605,7 @@ class SQLServerPlatform extends AbstractPlatform
...
@@ -605,7 +605,7 @@ class SQLServerPlatform extends AbstractPlatform
/**
/**
* {@inheritDoc}
* {@inheritDoc}
*/
*/
public
function
getGuidTypeDeclartionSQL
(
array
$field
)
public
function
getGuidTypeDeclar
a
tionSQL
(
array
$field
)
{
{
return
'UNIQUEIDENTIFIER'
;
return
'UNIQUEIDENTIFIER'
;
}
}
...
...
lib/Doctrine/DBAL/Types/GuidType.php
View file @
29f29d81
...
@@ -31,7 +31,7 @@ class GuidType extends StringType
...
@@ -31,7 +31,7 @@ class GuidType extends StringType
{
{
public
function
getSQLDeclaration
(
array
$fieldDeclaration
,
AbstractPlatform
$platform
)
public
function
getSQLDeclaration
(
array
$fieldDeclaration
,
AbstractPlatform
$platform
)
{
{
return
$platform
->
getGuidTypeDeclartionSQL
(
$fieldDeclaration
);
return
$platform
->
getGuidTypeDeclar
a
tionSQL
(
$fieldDeclaration
);
}
}
public
function
getName
()
public
function
getName
()
...
...
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