Unused PHP code detector library

Maintainers

Package info

github.com/pogulailo/unue

pkg:composer/pogulailo/unue

Statistics

Installs: 618

Dependents: 0

Suggesters: 0

Stars: 8

Open Issues: 1

v1.0.0 2023-04-30 05:31 UTC

This package is auto-updated.

Last update: 2026-03-29 01:00:59 UTC


README

Unused PHP code detector library.

Usage

All you need to do is add this code before and after the code you want to examine

use Pogulailo\Unue;

$driver = new Driver\Pcov();
$transport = new Transport\RabbitMq();
$detector = new Manager($driver, $transport);

$detector->start();

// Your code

$detector->stop();