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
dcb1fcdb
Commit
dcb1fcdb
authored
May 30, 2009
by
jwage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[2.0] Removing remaining return methods where not needed
parent
34da8376
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
AbstractSchemaManager.php
lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php
+5
-6
No files found.
lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php
View file @
dcb1fcdb
...
...
@@ -298,8 +298,7 @@ abstract class AbstractSchemaManager
*/
public
function
dropConstraint
(
$table
,
$name
,
$primary
=
false
)
{
$sql
=
$this
->
_platform
->
getDropConstraintSql
(
$table
,
$name
,
$primary
);
$this
->
_execSql
(
$sql
);
$this
->
_execSql
(
$this
->
_platform
->
getDropConstraintSql
(
$table
,
$name
,
$primary
));
}
/**
...
...
@@ -332,7 +331,7 @@ abstract class AbstractSchemaManager
*/
public
function
dropView
(
$name
)
{
return
$this
->
_execSql
(
$this
->
_platform
->
getDropViewSql
(
$name
));
$this
->
_execSql
(
$this
->
_platform
->
getDropViewSql
(
$name
));
}
/* create*() Methods */
...
...
@@ -452,7 +451,7 @@ abstract class AbstractSchemaManager
*/
public
function
createForeignKey
(
$table
,
array
$definition
)
{
return
$this
->
_execSql
(
$this
->
_platform
->
getCreateForeignKeySql
(
$table
,
$definition
));
$this
->
_execSql
(
$this
->
_platform
->
getCreateForeignKeySql
(
$table
,
$definition
));
}
/**
...
...
@@ -463,7 +462,7 @@ abstract class AbstractSchemaManager
*/
public
function
createView
(
$name
,
$sql
)
{
return
$this
->
_execSql
(
$this
->
_platform
->
getCreateViewSql
(
$name
,
$sql
));
$this
->
_execSql
(
$this
->
_platform
->
getCreateViewSql
(
$name
,
$sql
));
}
/* dropAndCreate*() Methods */
...
...
@@ -686,7 +685,7 @@ abstract class AbstractSchemaManager
*/
public
function
alterTable
(
$name
,
array
$changes
,
$check
=
false
)
{
return
$this
->
_execSql
(
$this
->
_platform
->
getAlterTableSql
(
$name
,
$changes
,
$check
));
$this
->
_execSql
(
$this
->
_platform
->
getAlterTableSql
(
$name
,
$changes
,
$check
));
}
/**
...
...
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