Unused PHP code detector library

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

This package is auto-updated.

Last update: 2025-05-29 01:56:56 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();