What is the recommended naming convention for method names in PHP, according to the PHP Framework Interop Group?

The PHP Framework Interop Group recommends using camelCase for method names in PHP. This convention involves starting the method name with a lowercase letter and capitalizing the first letter of each subsequent word within the name. This naming convention helps improve code readability and consistency across different PHP frameworks and libraries.

class ExampleClass {
    public function myMethodName() {
        // method implementation
    }
}