Page MenuHomePhabricator

Fix errors found by PHPStan
ClosedPublic

Authored by vrana on Feb 16 2017, 3:09 PM.
Tags
None
Referenced Files
F18606824: D17371.id.diff
Sat, Sep 13, 10:37 PM
F18594849: D17371.diff
Fri, Sep 12, 7:33 PM
F18514461: D17371.diff
Fri, Sep 5, 10:19 AM
F18508536: D17371.id.diff
Fri, Sep 5, 2:52 AM
F18500603: D17371.diff
Thu, Sep 4, 9:11 PM
F18203930: D17371.diff
Mon, Aug 18, 1:05 PM
F18110877: D17371.id41776.diff
Aug 12 2025, 1:25 AM
F18110774: D17371.id41775.diff
Aug 11 2025, 11:47 PM
Subscribers

Details

Test Plan

Ran phpstan analyze -a autoload.php phabricator/src.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

epriestley added inline comments.
src/applications/calendar/__tests__/CalendarTimeUtilTestCase.php
10

This test case is no longer doing anything with $day so I think it can't be right, but I can try to figure that out and follow up.

src/applications/calendar/storage/PhabricatorCalendarExternalInvitee.php
13–19

We should just remove this: it has no callsites and was improperly copy-pasted. This object has no status, inviterPHID, etc., properties, so this code will fatal even with this fix.

src/applications/conpherence/conduit/ConpherenceCreateThreadConduitAPIMethod.php
52–53

I think this case can just be removed instead. Conpherence threads are no longer required to have a title (if they don't, we'll create a default one by listing the participants) and I think this just never got cleaned up.

ERROR_EMPTY_MESSAGE should be impossible when creating a thread and I think it only refs to sending an empty message to an existing thread.

This revision is now accepted and ready to land.Feb 16 2017, 4:12 PM

Address feedback

src/applications/calendar/__tests__/CalendarTimeUtilTestCase.php
10

I've changed it to getTimestamps($u, $day, 1) and the test now passes.

src/applications/calendar/storage/PhabricatorCalendarExternalInvitee.php
13–19

Note that it returns PhabricatorCalendarEventInvitee, not PhabricatorCalendarExternalInvitee. I'll submit it like this and let you follow up.

src/applications/conpherence/conduit/ConpherenceCreateThreadConduitAPIMethod.php
52–53

Removed.

This revision was automatically updated to reflect the committed changes.