mir-analyzer 0.4.1

Analysis engine for the mir PHP static analyzer
Documentation
1
2
3
4
5
6
7
8
===source===
<?php
interface Runnable {
    public function run(): void;
}
class Task implements Runnable {}
===expect===
UnimplementedInterfaceMethod: class Task implements Runnable {}