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
5cff2bb7
Unverified
Commit
5cff2bb7
authored
May 02, 2020
by
Grégoire Paris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inherit phpdoc
parent
aa65f9df
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
0 deletions
+15
-0
PostgreSQL100Platform.php
lib/Doctrine/DBAL/Platforms/PostgreSQL100Platform.php
+3
-0
DB2SchemaManager.php
lib/Doctrine/DBAL/Schema/DB2SchemaManager.php
+3
-0
MySqlSchemaManager.php
lib/Doctrine/DBAL/Schema/MySqlSchemaManager.php
+3
-0
OracleSchemaManager.php
lib/Doctrine/DBAL/Schema/OracleSchemaManager.php
+3
-0
PostgreSqlSchemaManager.php
lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php
+3
-0
No files found.
lib/Doctrine/DBAL/Platforms/PostgreSQL100Platform.php
View file @
5cff2bb7
...
...
@@ -16,6 +16,9 @@ class PostgreSQL100Platform extends PostgreSQL94Platform
return
PostgreSQL100Keywords
::
class
;
}
/**
* {@inheritDoc}
*/
public
function
getListSequencesSQL
(
$database
)
:
string
{
return
'SELECT sequence_name AS relname,
...
...
lib/Doctrine/DBAL/Schema/DB2SchemaManager.php
View file @
5cff2bb7
...
...
@@ -217,6 +217,9 @@ class DB2SchemaManager extends AbstractSchemaManager
return
new
View
(
$view
[
'name'
],
$sql
);
}
/**
* {@inheritdoc}
*/
public
function
listTableDetails
(
$tableName
)
:
Table
{
$table
=
parent
::
listTableDetails
(
$tableName
);
...
...
lib/Doctrine/DBAL/Schema/MySqlSchemaManager.php
View file @
5cff2bb7
...
...
@@ -315,6 +315,9 @@ class MySqlSchemaManager extends AbstractSchemaManager
return
$result
;
}
/**
* {@inheritdoc}
*/
public
function
listTableDetails
(
$tableName
)
{
$table
=
parent
::
listTableDetails
(
$tableName
);
...
...
lib/Doctrine/DBAL/Schema/OracleSchemaManager.php
View file @
5cff2bb7
...
...
@@ -395,6 +395,9 @@ SQL;
}
}
/**
* {@inheritdoc}
*/
public
function
listTableDetails
(
$tableName
)
:
Table
{
$table
=
parent
::
listTableDetails
(
$tableName
);
...
...
lib/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php
View file @
5cff2bb7
...
...
@@ -501,6 +501,9 @@ class PostgreSqlSchemaManager extends AbstractSchemaManager
return
str_replace
(
"''"
,
"'"
,
$default
);
}
/**
* {@inheritdoc}
*/
public
function
listTableDetails
(
$tableName
)
:
Table
{
$table
=
parent
::
listTableDetails
(
$tableName
);
...
...
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