You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR was merged into the master branch.
Discussion
----------
Improving entities contracts
For example:
```php
$post = new Post();
// ...
if (!$post->getAuthor()) { // it's null initially so it should be fine allow null return
// ...
}
// ...
$post->setAuthor(null);
// shouldn't be allowed since the column is not null -> on flush() it'll fail anyway
```
Also it's consistent with `make:entity` command.
Commits
-------
9e1deb6 Improving entities contracts
0 commit comments