Commit 64a9d922 authored by Adrien Crivelli's avatar Adrien Crivelli

Surround ! with spaces according to code style

parent 17e0a24d
...@@ -214,7 +214,7 @@ class Index extends AbstractAsset implements Constraint ...@@ -214,7 +214,7 @@ class Index extends AbstractAsset implements Constraint
return false; return false;
} }
if (!$this->isUnique() && !$this->isPrimary()) { if ( ! $this->isUnique() && ! $this->isPrimary()) {
// this is a special case: If the current key is neither primary or unique, any uniqe or // this is a special case: If the current key is neither primary or unique, any uniqe or
// primary key will always have the same effect for the index and there cannot be any constraint // primary key will always have the same effect for the index and there cannot be any constraint
// overlaps. This means a primary or unique index can always fulfill the requirements of just an // overlaps. This means a primary or unique index can always fulfill the requirements of just an
...@@ -347,7 +347,7 @@ class Index extends AbstractAsset implements Constraint ...@@ -347,7 +347,7 @@ class Index extends AbstractAsset implements Constraint
return true; return true;
} }
if (!$this->hasOption('where') && !$other->hasOption('where')) { if ( ! $this->hasOption('where') && ! $other->hasOption('where')) {
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment