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: