Contribution Date
              Technology
              
          Contribution Project
              
          Contribution Details
              Thanks for the fixes.
@Shreya_th, I see your patch and MR are different. The patch has accidentally changed the indentation.
+++ b/src/DOComputedFields.php
@@ -33,42 +33,59 @@ class DOComputedFields extends TypedData {
+    return is_array($userInformation->field_bio) && isset($userInformation->field_bio[0]['value']) ? $userInformation->field_bio[0]['value'] : 'N/A';
I see you are treating the `$userInformation` as a Drupal field value. It is not. It is a simple PHP class and the `field_bio` (magic) property is not an array (unless it is empty). So the above code will always return "N/A". Yes, it won't throw an error.
In your MR, on the other hand, you are using a function called `get` but that function doesn't exist on the `User` class at all (nor on the base class).
Contribution Issue Link
              
          Files count
              0
          Patches count
              0