pogulailo / unue
Unused PHP code detector library
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 1
Forks: 0
Open Issues: 1
pkg:composer/pogulailo/unue
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();