What is the correct way to use the ReflectionMethod constructor in PHP?

When using the ReflectionMethod constructor in PHP, it is important to provide the class name and method name as parameters in the correct order. The first parameter should be the class name, and the second parameter should be the method name. This will allow you to create a ReflectionMethod object that represents the specified method within the specified class.

// Correct way to use ReflectionMethod constructor
$reflectionMethod = new ReflectionMethod('ClassName', 'methodName');