add tests for MainScope and UserJob getters/setters

This commit is contained in:
2023-09-19 10:19:51 +02:00
parent 949c5424f0
commit fc919e9547
2 changed files with 82 additions and 0 deletions

View File

@@ -288,6 +288,11 @@ class User implements UserInterface, \Stringable
return null;
}
public function getMainScopeHistories(): Collection
{
return $this->scopeHistories;
}
/**
* @return string
*/
@@ -332,6 +337,11 @@ class User implements UserInterface, \Stringable
return null;
}
public function getUserJobHistories(): Collection
{
return $this->jobHistories;
}
/**
* @return string
*/