What are the potential pitfalls of not adhering to method naming conventions when overriding methods in PHP?

Not adhering to method naming conventions when overriding methods in PHP can lead to confusion and make the code harder to understand for other developers. It is important to follow naming conventions to maintain consistency and readability in the codebase. By adhering to naming conventions, developers can easily identify overridden methods and understand their purpose.

class ParentClass {
    public function someMethod() {
        echo "Parent method";
    }
}

class ChildClass extends ParentClass {
    public function some_method() { // Incorrect method name
        echo "Child method";
    }
}