Benjamin Crozat “Heard about Sevalla? They let you deploy PHP apps with ease.” Claim $50 →

Methods with the same name as their class will not be constructors in a future version of PHP

1 minute read

Methods with the same name as their class will not be constructors in a future version of PHP

This warning message occurs because class constructors can’t have the same name as their class. You can fix this by changing it to __construct().

  1. Grab your favorite code editor and search for class definitions across your project;
  2. Check for constructor methods with the same name as the class and change it to __construct.

Your modifications should look like this:

class Foo
{
-     public function Foo()
+     public function __construct()
    {
    }
}

That’s it, it’s as simple as that.

But did you know the story behind this change?

In PHP 4, as you know, a constructor was declared with the same name as its class. It was still working in PHP 5, was deprecated in PHP 7.0, and removed in PHP 8.0. That is why you must rename your constructors before migrating to version 8 or greater.

For posterity, you can read more about it on the official PHP documentation: PHP deprecated features in version 7.0.x

You can also see the PHP RFC that led to this: PHP RFC: Remove PHP 4 Constructors


Did you like this article? Then, keep learning:

Help me reach more people by sharing this article on social media!

2 comments

  • HarryM-T
    HarryM-T 1yr ago

    Thank you! You just ended my suffering. I was using an old library that used the old convention and couldn't find out what was wrong till I read this.

Guest

Markdown is supported.

Hey, you need to sign in with your GitHub account to comment. Get started →

Great deals for developers

Search for posts and links

Try to type something…