Skip to content

Commit aa01ced

Browse files
committed
Apply fixes from StyleCI
1 parent 08c2101 commit aa01ced

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Queue/Jobs/Job.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,10 +232,10 @@ public function fail($e = null)
232232
*/
233233
protected function shouldRollBackDatabaseTransaction($e)
234234
{
235-
return ($e instanceof TimeoutExceededException &&
235+
return $e instanceof TimeoutExceededException &&
236236
$this->container['config']['queue.failed.database'] &&
237237
in_array($this->container['config']['queue.failed.driver'], ['database', 'database-uuids']) &&
238-
$this->container->bound('db'));
238+
$this->container->bound('db');
239239
}
240240

241241
/**

0 commit comments

Comments
 (0)