File "UseDeclarationUnitTest.3.inc"

Full Path: /home/warrior1/public_html/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/PSR2/Tests/Namespaces/UseDeclarationUnitTest.3.inc
File size: 198 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;
        };
    }
}