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
What would you like to do?
FakerPHP/Faker#164
In that pull request FakerPHP has marked property access as deprecated
/** * @param string $attribute * * @deprecated Use a method instead. */ public function __get($attribute) { trigger_deprecation('fakerphp/faker', '1.14', 'Accessing property "%s" is deprecated, use "%s()" instead.', $attribute, $attribute); return $this->format($attribute); }
Before/After code snippets
- $this->faker->lastName; + $this->faker->lastName();
The text was updated successfully, but these errors were encountered:
@jessarcher, this could be a cool PHP task.
Sorry, something went wrong.
This is a great idea!
Sorry for the delay here. This was added a little while back as the Faker methods task.
@jasonmccreary 👍 saw it on the changelog at the time.
jessarcher
No branches or pull requests
What would you like to do?
FakerPHP/Faker#164
In that pull request FakerPHP has marked property access as deprecated
Before/After code snippets
The text was updated successfully, but these errors were encountered: