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
52237874
Commit
52237874
authored
Jul 21, 2014
by
Adrien Crivelli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix code style as mentionned in PR comments
parent
e26b0444
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
9 deletions
+5
-9
PostgreSqlPlatform.php
lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php
+1
-3
SqlitePlatform.php
lib/Doctrine/DBAL/Platforms/SqlitePlatform.php
+1
-3
Index.php
lib/Doctrine/DBAL/Schema/Index.php
+3
-3
No files found.
lib/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php
View file @
52237874
...
...
@@ -175,9 +175,7 @@ class PostgreSqlPlatform extends AbstractPlatform
}
/**
* Whether the platform supports partial indexes.
*
* @return boolean
* {@inheritdoc}
*/
public
function
supportsPartialIndexes
()
{
...
...
lib/Doctrine/DBAL/Platforms/SqlitePlatform.php
View file @
52237874
...
...
@@ -464,9 +464,7 @@ class SqlitePlatform extends AbstractPlatform
}
/**
* Whether the platform supports partial indexes.
*
* @return boolean
* {@inheritdoc}
*/
public
function
supportsPartialIndexes
()
{
...
...
lib/Doctrine/DBAL/Schema/Index.php
View file @
52237874
...
...
@@ -54,7 +54,7 @@ class Index extends AbstractAsset implements Constraint
*
* @var string|null
*/
protected
$
_
where
=
null
;
protected
$where
=
null
;
/**
* @param string $indexName
...
...
@@ -71,7 +71,7 @@ class Index extends AbstractAsset implements Constraint
$this
->
_setName
(
$indexName
);
$this
->
_isUnique
=
$isUnique
;
$this
->
_isPrimary
=
$isPrimary
;
$this
->
_
where
=
$where
;
$this
->
where
=
$where
;
foreach
(
$columns
as
$column
)
{
$this
->
_addColumn
(
$column
);
...
...
@@ -306,6 +306,6 @@ class Index extends AbstractAsset implements Constraint
*/
public
function
getWhere
()
{
return
$this
->
_
where
;
return
$this
->
where
;
}
}
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