Page MenuHomePhabricator

Fix some odd looking arrays
ClosedPublic

Authored by joshuaspence on Apr 5 2015, 6:40 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Jul 25, 11:03 PM
Unknown Object (File)
Thu, Jul 25, 3:29 PM
Unknown Object (File)
Sun, Jul 21, 9:14 PM
Unknown Object (File)
Sun, Jul 21, 8:50 PM
Unknown Object (File)
Sun, Jul 21, 8:39 PM
Unknown Object (File)
Sun, Jul 21, 8:12 PM
Unknown Object (File)
Sat, Jul 13, 9:11 AM
Unknown Object (File)
Sat, Jul 13, 1:08 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.