Page MenuHomePhabricator

Fix errors found by PHPStan
ClosedPublic

Authored by vrana on Feb 16 2017, 12:17 PM.
Tags
None
Referenced Files
F19303257: D17364.diff
Tue, Dec 23, 10:05 PM
F19101636: D17364.diff
Dec 5 2025, 3:18 AM
F19037131: D17364.id41755.diff
Nov 25 2025, 10:10 PM
F18961597: D17364.id41758.diff
Nov 13 2025, 2:23 PM
F18961260: D17364.id41758.diff
Nov 13 2025, 1:37 PM
F18870162: D17364.id41758.diff
Nov 4 2025, 3:46 PM
F18855174: D17364.diff
Nov 1 2025, 3:49 AM
F18711324: D17364.id41755.diff
Sep 29 2025, 3:56 AM
Subscribers

Details

Test Plan

Ran phpstan analyze --autoload-file=src/__phutil_library_init__.php -c phpstan.neon -l 1 src/ with phpstan.neon containing:

parameters:
    excludes_analyse:
        - */__tests__/*

Diff Detail

Repository
rPHU libphutil
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Are you on PHP7? I think the test failure might be PHP7 specific since we don't see it on the server-side tests (which run on PHP5).

The root issue behind that test failure is T10929.

src/cache/PhutilKeyValueCacheStack.php
70–73

I believe this has zero use cases, but probably fine to keep.

src/internationalization/PhutilNumber.php
8–11

This doesn't seem like a static analysis error?

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

(I think you still have commit access, but let me know if you hit issues.)

Yes, I'm on PHP 7, PHPStan requires it.

src/internationalization/PhutilNumber.php
8–11

It's called like this from src/daemon/PhutilDaemonHandle.php and src/daemon/PhutilDaemon.php.

This revision was automatically updated to reflect the committed changes.