mayflower/mo4-coding-standard

View on GitHub
MO4/Tests/Formatting/UnnecessaryNamespaceUsageUnitTest.fail.2.inc.fixed

Summary

Maintainability
Test Coverage
<?php

namespace Foo\Bar;


class Bazz
{
    function foo()
    {
        $x = new Blubb();
        $y = new Blubb();
    }
}