The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<documentation title="Constructor name">
    <standard>
    <![CDATA[
    Constructors should be named __construct, not after the class.
    ]]>
    </standard>
    <code_comparison>
        <code title="Valid: The constructor is named __construct.">
        <![CDATA[
class Foo
{
    function <em>__construct</em>()
    {
    }
}
        ]]>
        </code>
        <code title="Invalid: The old style class name constructor is used.">
        <![CDATA[
class Foo
{
    function <em>Foo</em>()
    {
    }
}
        ]]>
        </code>
    </code_comparison>
</documentation>