Unused PHP code detector library

Installs: 78

Dependents: 0

Suggesters: 0

Security: 0

Stars: 8

Watchers: 1

Forks: 0

Open Issues: 1

pkg:composer/pogulailo/unue

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

This package is auto-updated.

Last update: 2025-12-29 03:54:17 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();