xgc1986/finalizer

A simple utility library that checks for PHP classes that should or shouldn't be marked as final

This package's canonical repository appears to be gone and the package has been frozen as a result.

1.0.0 2015-02-27 03:18 UTC

This package is not auto-updated.

Last update: 2023-12-29 16:19:25 UTC


README

This library aims at providing simple tools that help deciding whether a class should or shouldn't be declared as final.

Build Status Scrutinizer Code Quality Code Coverage Dependency Status HHVM Status

Latest Stable Version Latest Unstable Version

Help/Support

Gitter

Installation

Install via composer:

php composer.phar require ocramius/finalizer:~1.0

Usage

In your console, simply type:

./vendor/bin/finalizer finalize:check-final-classes path/to/directory
./vendor/bin/finalizer finalize:check-final-classes also/supports multiple/directories as/parameters

Note that finalizer will take decisions on whether classes should or shouldn't be final depending on the classes defined in the directories that you passed to it.

Additionally, be aware that finalizer will (in its current state) require any of the PHP or Hack files in the given directories and include them via require_once.

Reference

If you need to know more about why I wrote this library, and what kind of decisions it is doing, then please read this blogpost about the usage of the final keyword.