ngmy/unused-public

Detect unused public properties, constants and methods in your code

Installs: 35

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 7

Type:phpstan-extension

dev-main 2024-02-13 21:14 UTC

This package is auto-updated.

Last update: 2024-04-15 14:28:03 UTC


README


unused_public.jpg

It's easy to find unused private class elements, because they're not used in the class itself:

 final class Book
 {
     public function getTitle(): string
     {
         // ...
     }

-    private function getSubtitle(): string
-    {
-        // ...
-    }
}

But what about public class elements?


How can we detect such element?

  • find a e.g. public method
  • find all public method calls
  • compare those in simple diff
  • if the public method is not found, it probably unused

That's exactly what this package does.


This technique is very useful for private projects and to detect accidentally open public API that should be used only locally.


Install

composer require tomasvotruba/unused-public --dev

The package is available on PHP 7.2-8.1 versions in tagged releases.


Usage

With PHPStan extension installer, everything is ready to run.

Enable each item on their own with simple configuration:

# phpstan.neon
parameters:
    unused_public:
        methods: true
        properties: true
        constants: true

Do you want to check local-only method calls that should not be removed, but be turned into private/protected instead?

# phpstan.neon
parameters:
    unused_public:
        local_methods: true

Exclude methods called in templates

Some methods are used only in TWIG or Blade templates, and could be reported false positively as unused.

{{ book.getTitle() }}

How can we exclude them? Add your TWIG or Blade template directories in config to exclude methods names:

# phpstan.neon
parameters:
    unused_public:
        template_paths:
            - templates

Known Limitations

In some cases, the rules report false positives:

  • when used only in templates, apart Twig paths, it's not possible to detect them

Skip Public-Only Methods

Open-source vendors design public API to be used by projects. Is element reported as unused, but it's actually designed to be used public?

Mark the class or element with @api annotation to skip it:

final class Book
{
    /**
     * @api
     */
    public function getName()
    {
        return $this->name;
    }
}

Public Methods Used in Tests Only

Some public methods are designed to be used in tests only. Is element reported as unused, but it's actually used in tests?

Mark the class or element with @internal annotation to reported as used:

final class Book
{
    /**
     * @internal
     */
    public function getName()
    {
        return $this->name;
    }
}