pogulailo / unue
Unused PHP code detector library
v1.0.0
2023-04-30 05:31 UTC
Requires
- ext-pcov: *
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();