* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace Symfony\CS\Tests\Fixer\PSR2; use Symfony\CS\Tests\Fixer\AbstractFixerTestBase; /** * @author Dariusz RumiƄski */ class MultipleUseFixerTest extends AbstractFixerTestBase { public function testFix() { $expected = <<<'EOF' use Some, Not, PHP, Like, Use, Statement; makeTest($expected, $input); } }