File "UseDeclarationUnitTest.3.inc.fixed"

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

<?php
namespace bug;

use someNS\A;
use someNS\B;

class Bug
{
    public function __construct()
    {
        $b = 1;
        $a = function () use ($b) {
            echo $b;
        };
    }
}