- Issue created by @wim leers
- Merge request !5540Resolve #3404023 "Plugincollection null configuration" β (Open) created by wim leers
- Issue was unassigned.
- Status changed to Needs review
over 1 year ago 1:59pm 24 November 2023 - π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
IMHO this is such a simple change (purely to do with function signatures) that test coverage is excessive here?
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
PHPStan gets in the way once again. Locally, PHPStan does not complain π¬
Tried an alternative implementation.
- πΊπΈUnited States mglaman WI, USA
I don't know why it passed locally, but it's probably trusting the phpdoc which probably says it's always an array and never null.
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
Thanks, @mglaman, that makes sense!
Note that an alternative solution could be to modify
\Drupal\Core\Config\Entity\ConfigEntityBase::set()
:public function set($property_name, $value) { if ($this instanceof EntityWithPluginCollectionInterface) { $plugin_collections = $this->getPluginCollections(); if (isset($plugin_collections[$property_name])) { // If external code updates the settings, pass it along to the plugin. $plugin_collections[$property_name]->setConfiguration($value); } } β¦
π We could make it not call
::setConfiguration()
if$value
is NULL. - πΊπΈUnited States mglaman WI, USA
I read
null
as reset/no config. So I'd transformnull
to[]
and still call. Otherwise the intent to remove or clear configuration wouldn't happen and existing configuration would persist.The idea that null === remove.
- Status changed to Needs work
over 1 year ago 6:20pm 26 November 2023 - πΊπΈUnited States smustgrave
If I'm understanding correctly believe the suggestion is to revert
https://git.drupalcode.org/project/drupal/-/merge_requests/5540/diffs?co...
Right?
- Status changed to Needs review
over 1 year ago 12:15pm 27 November 2023 - πΊπΈUnited States phenaproxima Massachusetts
This looks good, but I think it could use a comment. Also, don't we need test coverage for this?
- Status changed to Needs work
over 1 year ago 10:46pm 27 November 2023 - πΊπΈUnited States smustgrave
NW for the inline comment.
in #4 was mentioned test coverage may be overkill but if there's valid concern then test coverage should be added too.
- Assigned to wim leers
- π§πͺBelgium borisson_ Mechelen, π§πͺ
I'm not sure about the solution chosen here, should we deprecate calling DefaultSingleLazyPluginCollection::setConfiguration() with NULL, and attempt to make it typehinted in drupal 11?
- Issue was unassigned.
- Status changed to Needs review
over 1 year ago 10:27am 5 December 2023 - π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
@phenaproxima: Test coverage added. The test-only job fails π
@borisson_: Done. Turns out it is simple: https://3v4l.org/dcCF0 π CR: https://www.drupal.org/node/3406191 β
- Status changed to RTBC
over 1 year ago 12:00pm 5 December 2023 - Status changed to Needs review
over 1 year ago 1:47pm 5 December 2023 - πΊπΈUnited States phenaproxima Massachusetts
One small question about adding a future-proof type hint.
- Assigned to phenaproxima
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
AFAICT PHPStan does not allow us to do that. See MR for PHPStan output.
- πΊπΈUnited States phenaproxima Massachusetts
What the hell is PHPStan talking about??? That is contravariant.
From https://www.php.net/manual/en/language.oop5.variance.php (my emphasis):
Covariance allows a child's method to return a more specific type than the return type of its parent's method. Whereas, contravariance allows a parameter type to be less specific in a child method, than that of its parent.
- πΊπΈUnited States phenaproxima Massachusetts
Oh, I see -- PHPStan is annoyed because of the direction of the contravariance, since this MR doesn't change
\Drupal\Component\Plugin\LazyPluginCollection::setConfiguration
.But then I gotta wonder...why aren't we also changing that method too? The doc comment says that $configuration needs to be an array...
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
But then I gotta wonder...why aren't we also changing that method too? The doc comment says that $configuration needs to be an array.
Because the end goal is
public function setConfiguration(array $configuration)
, without the?
.And if we set it to
?array
now, then it's impossible to change the typehint toarray
in 11.array
works,?array
does not work - Status changed to RTBC
over 1 year ago 3:04pm 5 December 2023 - πΊπΈUnited States phenaproxima Massachusetts
Yeah, that makes sense. It's too bad, but in light of the discovery about
LazyPluginCollection
, I think what we have now is a correct approach. In Drupal 11 we can fix it all properly,array $configuration
everywhere!Adjusting credit and restoring RTBC.
- Issue was unassigned.
- Status changed to Needs review
over 1 year ago 4:37pm 12 December 2023 - π¬π§United Kingdom alexpott πͺπΊπ
Asked a question / have a suggestion on the MR.
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
See #15 and #21 for 3v4l.org examples for why the current typehint additions are AFAICT fine and @phenaproxima's last MR comment is AFAICT correct.
What are we missing?
- Status changed to RTBC
over 1 year ago 3:03pm 13 December 2023 - π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
AFAICT everything is actually addressed:
- I've applied Alex' language suggestions.
- The remarks Alex posted were apparently on suggestions by @phenaproxima that I already explained why they could not work.
So: back to RTBC. Alex mentioned in #24 a question was asked on the MR, but I don't see any question, only responses on _suggestion threads_ that were responded to here in the issue? π€
- Status changed to Fixed
over 1 year ago 3:42pm 13 December 2023 -
alexpott β
committed 871bc1ac on 11.x
Issue #3404023 by Wim Leers, phenaproxima, mglaman, borisson_, alexpott...
-
alexpott β
committed 871bc1ac on 11.x
Automatically closed - issue fixed for 2 weeks with no activity.