File "UseDeclarationUnitTest.2.inc.fixed"

Full Path: /home/warrior1/public_html/wp-content/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.2.inc.fixed
File size: 561 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MyProject;

use BarClass as Bar;
use My\Full\Classname as Another;
use My\Full\NSname;
use function My\Full\functionname as somefunction;
use function My\Full\otherfunction;
use const My\Full\constantname as someconstant;
use const My\Full\otherconstant;

use BarClass as Bar;
use FooClass;
use BazClass as Baz;
use function My\Full\functionname as somefunction;
use function My\Full\otherfunction;
use const My\Full\constantname as someconstant;
use const My\Full\otherconstant;


namespace AnotherProject;

use ArrayObject;

$foo = 'bar';

?>