Kahlan\Spec\Fixture\Jit\Patcher\Monkey\Example::ignoreControlStructure PHP Метод

ignoreControlStructure() публичный Метод

    public function ignoreControlStructure()
    {
        array();
        true and true;
        try {
        } catch (\Exception $e) {
        }
        compact();
        declare (ticks=1);
        die;
        echo '';
        empty($a);
        eval('');
        exit(-1);
        extract();
        for ($i = 0; $i < 1; $i++) {
        }
        foreach ($array as $key => $value) {
        }
        func_get_arg();
        func_get_args();
        func_num_args();
        function () {
        };
        if (true) {
        }
        include 'filename';
        include_once 'filename';
        if (false) {
        } elseif (true) {
        }
        isset($a);
        list($a, $b) = ['A', 'B'];
        true or true;
        new self();
        new static();
        parent::hello();
        print 'hello';
        require 'filename';
        require_once 'filename';
        return $a;
        switch ($case) {
            case true && true:
                break;
            default:
        }
        throw $e;
        unset($a);
        while (false) {
        }
        true xor true;
    }