Skip to content

Commit 81fa7d0

Browse files
committed
fixed CS
1 parent 890a7c4 commit 81fa7d0

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Normalizer/ObjectToPopulateTrait.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,7 @@ protected function extractObjectToPopulate($class, array $context, $key = null)
2828
{
2929
$key = $key ?: 'object_to_populate';
3030

31-
if (
32-
isset($context[$key]) &&
33-
is_object($context[$key]) &&
34-
$context[$key] instanceof $class
35-
) {
31+
if (isset($context[$key]) && is_object($context[$key]) && $context[$key] instanceof $class) {
3632
return $context[$key];
3733
}
3834

0 commit comments

Comments
 (0)