Skip to content

Commit 7e48e0a

Browse files
authored
Merge pull request cakephp#1212 from ntzm/use-elvis-operator
Use elvis operator (?:) where possible
2 parents b4a5fad + 3b780a4 commit 7e48e0a

File tree

4 files changed

+12
-16
lines changed

4 files changed

+12
-16
lines changed

src/Phinx/Db/Adapter/MysqlAdapter.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -718,9 +718,9 @@ public function getSqlType($type, $limit = null)
718718
{
719719
switch ($type) {
720720
case static::PHINX_TYPE_STRING:
721-
return ['name' => 'varchar', 'limit' => $limit ? $limit : 255];
721+
return ['name' => 'varchar', 'limit' => $limit ?: 255];
722722
case static::PHINX_TYPE_CHAR:
723-
return ['name' => 'char', 'limit' => $limit ? $limit : 255];
723+
return ['name' => 'char', 'limit' => $limit ?: 255];
724724
case static::PHINX_TYPE_TEXT:
725725
if ($limit) {
726726
$sizes = [
@@ -739,9 +739,9 @@ public function getSqlType($type, $limit = null)
739739

740740
return ['name' => 'text'];
741741
case static::PHINX_TYPE_BINARY:
742-
return ['name' => 'binary', 'limit' => $limit ? $limit : 255];
742+
return ['name' => 'binary', 'limit' => $limit ?: 255];
743743
case static::PHINX_TYPE_VARBINARY:
744-
return ['name' => 'varbinary', 'limit' => $limit ? $limit : 255];
744+
return ['name' => 'varbinary', 'limit' => $limit ?: 255];
745745
case static::PHINX_TYPE_BLOB:
746746
if ($limit) {
747747
$sizes = [

src/Phinx/Db/Adapter/PostgresAdapter.php

+4-6
Original file line numberDiff line numberDiff line change
@@ -914,8 +914,8 @@ protected function getColumnSqlDefinition(Column $column)
914914
if (static::PHINX_TYPE_DECIMAL === $sqlType['name'] && ($column->getPrecision() || $column->getScale())) {
915915
$buffer[] = sprintf(
916916
'(%s, %s)',
917-
$column->getPrecision() ? $column->getPrecision() : $sqlType['precision'],
918-
$column->getScale() ? $column->getScale() : $sqlType['scale']
917+
$column->getPrecision() ?: $sqlType['precision'],
918+
$column->getScale() ?: $sqlType['scale']
919919
);
920920
} elseif (in_array($sqlType['name'], ['geography'])) {
921921
// geography type must be written with geometry type and srid, like this: geography(POLYGON,4326)
@@ -926,7 +926,7 @@ protected function getColumnSqlDefinition(Column $column)
926926
);
927927
} elseif (!in_array($sqlType['name'], ['integer', 'smallint', 'bigint'])) {
928928
if ($column->getLimit() || isset($sqlType['limit'])) {
929-
$buffer[] = sprintf('(%s)', $column->getLimit() ? $column->getLimit() : $sqlType['limit']);
929+
$buffer[] = sprintf('(%s)', $column->getLimit() ?: $sqlType['limit']);
930930
}
931931
}
932932

@@ -1008,9 +1008,7 @@ protected function getIndexSqlDefinition(Index $index, $tableName)
10081008
*/
10091009
protected function getForeignKeySqlDefinition(ForeignKey $foreignKey, $tableName)
10101010
{
1011-
$constraintName = $foreignKey->getConstraint()
1012-
? $foreignKey->getConstraint()
1013-
: $tableName . '_' . implode('_', $foreignKey->getColumns());
1011+
$constraintName = $foreignKey->getConstraint() ?: $tableName . '_' . implode('_', $foreignKey->getColumns());
10141012

10151013
$def = ' CONSTRAINT "' . $constraintName . '" FOREIGN KEY ("' . implode('", "', $foreignKey->getColumns()) . '")';
10161014
$def .= " REFERENCES {$this->quoteTableName($foreignKey->getReferencedTable()->getName())} (\"" . implode('", "', $foreignKey->getReferencedColumns()) . '")';

src/Phinx/Db/Adapter/SQLiteAdapter.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ public function getPhinxType($sqlTypeDef)
873873
$precision = null;
874874
$type = $matches[1];
875875
if (count($matches) > 2) {
876-
$limit = $matches[3] ? $matches[3] : null;
876+
$limit = $matches[3] ?: null;
877877
}
878878
if (count($matches) > 4) {
879879
$precision = $matches[5];
@@ -986,7 +986,7 @@ protected function getColumnSqlDefinition(Column $column)
986986
}
987987
$limitable = in_array(strtoupper($sqlType['name']), $this->definitionsWithLimits);
988988
if (($column->getLimit() || isset($sqlType['limit'])) && $limitable) {
989-
$def .= '(' . ($column->getLimit() ? $column->getLimit() : $sqlType['limit']) . ')';
989+
$def .= '(' . ($column->getLimit() ?: $sqlType['limit']) . ')';
990990
}
991991
if (($values = $column->getValues()) && is_array($values)) {
992992
$def .= " CHECK({$column->getName()} IN ('" . implode("', '", $values) . "'))";

src/Phinx/Db/Adapter/SqlServerAdapter.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ protected function getColumnSqlDefinition(Column $column, $create = true)
10341034
'tinyint'
10351035
];
10361036
if (!in_array($sqlType['name'], $noLimits) && ($column->getLimit() || isset($sqlType['limit']))) {
1037-
$buffer[] = sprintf('(%s)', $column->getLimit() ? $column->getLimit() : $sqlType['limit']);
1037+
$buffer[] = sprintf('(%s)', $column->getLimit() ?: $sqlType['limit']);
10381038
}
10391039
if ($column->getPrecision() && $column->getScale()) {
10401040
$buffer[] = '(' . $column->getPrecision() . ',' . $column->getScale() . ')';
@@ -1097,9 +1097,7 @@ protected function getIndexSqlDefinition(Index $index, $tableName)
10971097
*/
10981098
protected function getForeignKeySqlDefinition(ForeignKey $foreignKey, $tableName)
10991099
{
1100-
$constraintName = $foreignKey->getConstraint()
1101-
? $foreignKey->getConstraint()
1102-
: $tableName . '_' . implode('_', $foreignKey->getColumns());
1100+
$constraintName = $foreignKey->getConstraint() ?: $tableName . '_' . implode('_', $foreignKey->getColumns());
11031101
$def = ' CONSTRAINT ' . $this->quoteColumnName($constraintName);
11041102
$def .= ' FOREIGN KEY ("' . implode('", "', $foreignKey->getColumns()) . '")';
11051103
$def .= " REFERENCES {$this->quoteTableName($foreignKey->getReferencedTable()->getName())} (\"" . implode('", "', $foreignKey->getReferencedColumns()) . '")';

0 commit comments

Comments
 (0)