Skip to content

Commit 71381e5

Browse files
Remove unnecessary parentheses (#57210)
1 parent 9ab5960 commit 71381e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Database/Schema/SqliteSchemaState.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ public function dump(Connection $connection, $path)
3939
*/
4040
protected function appendMigrationData(string $path)
4141
{
42-
($process = $this->makeProcess(
42+
$process = $this->makeProcess(
4343
$this->baseCommand().' ".dump \''.$this->getMigrationTable().'\'"'
44-
))->mustRun(null, array_merge($this->baseVariables($this->connection->getConfig()), [
44+
)->mustRun(null, array_merge($this->baseVariables($this->connection->getConfig()), [
4545
//
4646
]));
4747

0 commit comments

Comments
 (0)