Skip to content

Commit d8e42e0

Browse files
author
peter
committed
Fix Style
1 parent 08fe11c commit d8e42e0

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/Illuminate/Database/Eloquent/Collection.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -683,14 +683,12 @@ public function getQueueableClass()
683683
*/
684684
protected function getModelClass($model)
685685
{
686-
if(method_exists($model,'getClassNameForSerialization')) {
687-
return $model->getClassNameForSerialization();
686+
if (method_exists($model, 'getClassNameForSerialization')) {
687+
return $model->getClassNameForSerialization();
688688
}
689-
689+
690690
return get_class($model);
691691
}
692-
693-
694692

695693
/**
696694
* Get the identifiers for all of the entities.

0 commit comments

Comments
 (0)