-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
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
[CLEANUP] Refactor ::getAllDeclarationBlocks()
#990
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't the method getAllDeclarationBlocks
simply be moved from Document
to CSSBlockList
as is (continuing to use the internal allDeclarationBlocks()
?
55a0fa0
to
fec6092
Compare
I'm planning on removing I've created #994 to list the steps of this plan. |
3cc910e
to
6a13625
Compare
Okay, I'll mark this as draft for now and move the method up first. |
6a13625
to
3d1655e
Compare
Document::getAllDeclarationBlocks()
::getAllDeclarationBlocks()
1529fd3
to
5709945
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Functionally fine, but have made some suggestions for improvement.
src/CSSList/CSSBlockList.php
Outdated
*/ | ||
public function getAllDeclarationBlocks(): array | ||
{ | ||
/** @var array<int, DeclarationBlock> $result */ | ||
/** @var list<DeclarationBlock> $result */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this still needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've removed it for now. If PHPStan complains (on a higher check level), we can re-add it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It may have been needed when the array was passed by reference as an argument to allDeclarationBlocks()
, which, with this change, it no longer is.
src/CSSList/CSSBlockList.php
Outdated
$result = []; | ||
$this->allDeclarationBlocks($result); | ||
|
||
foreach ($this->contents as $directSibling) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sibling of whom? Direct (usu. adjacent) sibling (e.g. CSS +
) normally refers from one to the other. I think the original $item
was fine, as we are not dealing with brotherly or sisterly relationships here - unless I've missed something.
src/CSSList/CSSBlockList.php
Outdated
foreach ($directSibling->getAllDeclarationBlocks() as $grandchild) { | ||
$result[] = $grandchild; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
array_merge()
will do the job here.
5709945
to
4a7e38c
Compare
Part of #994.