for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace RoaveTestAsset;
class ClassWithMethodsBeingRemoved
{
public function nameCaseChangePublicMethod() {
}
public function keptPublicMethod() {
protected function nameCaseChangeProtectedMethod() {
protected function keptProtectedMethod() {
private function nameCaseChangePrivateMethod() {
nameCaseChangePrivateMethod()
This check looks for private methods that have been defined, but are not used inside the class.
private function keptPrivateMethod() {
keptPrivateMethod()
This check looks for private methods that have been defined, but are not used inside the class.