mayflower/mo4-coding-standard

View on GitHub
MO4/Tests/Formatting/UnnecessaryNamespaceUsageUnitTest.pass.4.inc

Summary

Maintainability
Test Coverage
<?php

use Another\Foo;
use Foo as GlobalFoo;

class Bar
{
    /**
     * Do a thing
     *
     * @param Foo $foo
     */
    public function doThing(Foo $foo)
    {
        $foo->bar();
    }
}