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)
Sat, Aug 31, 12:39 PM
Unknown Object (File)
Fri, Aug 30, 9:27 AM
Unknown Object (File)
Tue, Aug 27, 12:37 PM
Unknown Object (File)
Sun, Aug 25, 4:55 AM
Unknown Object (File)
Thu, Aug 22, 4:33 AM
Unknown Object (File)
Thu, Aug 22, 4:33 AM
Unknown Object (File)
Thu, Aug 22, 4:32 AM
Unknown Object (File)
Thu, Aug 22, 4:01 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
Branch
master
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 5125
Build 5143: [Placeholder Plan] Wait for 30 Seconds

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

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

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.