Skip to content

Commit 5c228d2

Browse files
committed
Apply fixes from StyleCI
[ci skip] [skip ci]
1 parent 19667a7 commit 5c228d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/Library/Database/Table.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ public function getNotnull()
3030

3131
public function getDefault()
3232
{
33-
return isset($this->schemaManager) ?
34-
(is_a($this->schemaManager->getConnection(), \Illuminate\Database\MariaDbConnection::class) &&
33+
return isset($this->schemaManager) ?
34+
(is_a($this->schemaManager->getConnection(), \Illuminate\Database\MariaDbConnection::class) &&
3535
is_string($this->column['default']) &&
36-
$this->column['nullable'] === true &&
36+
$this->column['nullable'] === true &&
3737
($this->column['default'] === 'null' || $this->column['default'] === 'NULL') ? null : $this->column['default']) : $this->column['default'];
3838
}
3939

0 commit comments

Comments
 (0)