Page MenuHomePhabricator

Fix some odd looking arrays
ClosedPublic

Authored by joshuaspence on Apr 5 2015, 6:40 AM.
Tags
None
Referenced Files
F13965903: D12281.id29484.diff
Wed, Oct 16, 4:56 AM
Unknown Object (File)
Thu, Sep 26, 6:00 PM
Unknown Object (File)
Sep 7 2024, 11:36 PM
Unknown Object (File)
Aug 31 2024, 12:39 PM
Unknown Object (File)
Aug 30 2024, 9:27 AM
Unknown Object (File)
Aug 27 2024, 12:37 PM
Unknown Object (File)
Aug 25 2024, 4:55 AM
Unknown Object (File)
Aug 22 2024, 4:33 AM
Subscribers

Details

Reviewers
epriestley
Group Reviewers
Blessed Reviewers
Commits
Restricted Diffusion Commit
rPea376685ae9e: Fix some odd looking arrays
Summary

These arrays looks a little odd, most likely due to the autofix applied by ArcanistXHPASTLinter::LINT_ARRAY_SEPARATOR. See D12296 in which I attempt to improve the autocorrection from this linter rule.

Test Plan

N/A

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

joshuaspence retitled this revision from to Fix some odd looking arrays.
joshuaspence updated this object.
joshuaspence edited the test plan for this revision. (Show Details)
This revision is now accepted and ready to land.Apr 5 2015, 12:20 PM
joshuaspence edited the test plan for this revision. (Show Details)
joshuaspence edited edge metadata.
src/view/phui/PHUITimelineEventView.php
438–439

I'm actually not sure that this is meant to be an array element, it seems rather odd.

This revision was automatically updated to reflect the committed changes.
src/view/phui/PHUITimelineEventView.php
438–439

Oh, this is trying to be "tag with no body". The '' can just be omitted completely.

That is, instead of f(x, array(y), '') it's incorrectly written as f(x, array(y, '')). But f(x, array(y)) is equivalent.