在IntelliJ / PhpStorm中搜索所有文件以查找特定错误类型

We recently upgraded on of our projects to PHP7, which doesn't allow the following:

class SomeTestClass {

  /**
   * This is the constructor
   */
  public function SomeTestClass (){
    //Whatever
  }
}

The constructor should be renamed to __construct instead of the class-name. PhpStorm correctly indicates this as "Old style constructor usage". Can I search all files of my project for this specific error type?

There's an inspection for this: PHP → Code Style → Old style constructor. You can then use the menu Code → Inspect code to find them all.

Code inspections

Expansion on jlh's answer: I created a custom Inspection profile with only the one inspection needed:

enter image description here

This can then be chosen in the inspect code dialog:

enter image description here

If you run the inspection on the project now, it only shows this specific error type.