
no_php4_constructor
¶Convert PHP4-style constructors to __construct
.
Risky when old style constructor being fixed is overridden or overrides parent one.
--- Original
+++ New
<?php
class Foo
{
- public function Foo($bar)
+ public function __construct($bar)
{
}
}
The rule is part of the following rule sets:
Using the @PHP80Migration:risky rule set will enable the no_php4_constructor
rule.
Using the @PhpCsFixer:risky rule set will enable the no_php4_constructor
rule.
Using the @Symfony:risky rule set will enable the no_php4_constructor
rule.