diff --git a/src/ScimRecord.php b/src/ScimRecord.php
index 724376cb05c1e6abd4ae0cfd3b188e03b45bbf3e..bba5433f6c86b50fa4443bb998a9336f196e4708 100644
--- a/src/ScimRecord.php
+++ b/src/ScimRecord.php
@@ -358,15 +358,6 @@ class ScimRecord {
     return $this->orgUnitSymbol;
   }
 
-  /**
-   * Sets organizational unit symbol.
-   */
-  private function setOrgUnitSymbol(): void {
-    if (isset($this->data['no:edu:scim:user']['primaryOrgUnit']['symbol'])) {
-      $this->orgUnitSymbol = $this->data['no:edu:scim:user']['primaryOrgUnit']['symbol'];
-    }
-  }
-
   /**
    * Returns title.
    *
@@ -408,10 +399,10 @@ class ScimRecord {
   }
 
   /**
-   * Returns roles.
+   * Returns schemas.
    *
    * @return array
-   *   Roles.
+   *   Schemas.
    */
   public function getSchemas(): array {
     return $this->schemas;
@@ -512,6 +503,15 @@ class ScimRecord {
     }
   }
 
+  /**
+   * Sets organizational unit symbol.
+   */
+  private function setOrgUnitSymbol(): void {
+    if (isset($this->data['no:edu:scim:user']['primaryOrgUnit']['symbol'])) {
+      $this->orgUnitSymbol = $this->data['no:edu:scim:user']['primaryOrgUnit']['symbol'];
+    }
+  }
+
   /**
    * Sets username.
    *