We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code works:
teacher_community_2: __factory: from: id: ~ forename: 'Joshua' surname: '<lastName()>' displayName: 'Dr. $surname'
But this one doesn't:
teacher_community_2: __factory: from: id: ~ forename: 'Joshua' surname: 'Potato' displayName: 'Dr. $surname'
It throws:
In UnresolvableValueExceptionFactory.php line 77: Could not find a variable "$surname".
Apparently, the own variables are only available if they come from a Faker source; but not if they are defined as a literal.
@self->surname does not work either, since it throws:
@self->surname
In ObjectNotFoundExceptionFactory.php line 23: Could not find the object "teacher_community_2" of the class "Teacher".
Is this a bug or am I missing something in the documentation?
The text was updated successfully, but these errors were encountered:
No that definitely looks like a bug.
the own variables are only available if they come from a Faker source
That should not be the case
And this should work
Sorry, something went wrong.
No branches or pull requests
This code works:
But this one doesn't:
It throws:
Apparently, the own variables are only available if they come from a Faker source; but not if they are defined as a literal.
@self->surname
does not work either, since it throws:Is this a bug or am I missing something in the documentation?
The text was updated successfully, but these errors were encountered: