PhpMigration\Changes\v5dot3\IncompCallFromGlobalTest::test PHP Method

test() public method

public test ( )
    public function test()
    {
        $this->assertHasSpot('func_get_arg();');
        $this->assertNotSpot('function func() { func_get_arg(); }');
        $code = 'class Same { function func() { func_get_arg(); } }';
        $this->assertNotSpot($code);
    }
IncompCallFromGlobalTest