Commit 3d759056 authored by Gabriel Caruso's avatar Gabriel Caruso

CS Fixes

parent e670e432
......@@ -184,7 +184,7 @@ class Comparator
return true;
}
return $sequence1->getInitialValue() != $sequence2->getInitialValue();
return $sequence1->getInitialValue() !== $sequence2->getInitialValue();
}
/**
......@@ -402,7 +402,7 @@ class Comparator
return true;
}
return $key1->onDelete() != $key2->onDelete();
return $key1->onDelete() !== $key2->onDelete();
}
/**
......
......@@ -226,7 +226,7 @@ class Index extends AbstractAsset implements Constraint
return false;
}
return $other->isUnique() == $this->isUnique();
return $other->isUnique() === $this->isUnique();
}
return false;
......
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