===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
php-zend-code-3.4.1/CHANGELOG.md-370-  [#30](https://github.com/zendframework/zend-code/pull/30)
php-zend-code-3.4.1/CHANGELOG.md:371:- `Zend\Code\Generator\ParameterGenerator::$simple` was removed. [#30](https://github.com/zendframework/zend-code/pull/30)
php-zend-code-3.4.1/CHANGELOG.md:372:- `Zend\Code\Generator\ParameterGenerator#$type` is now a `null|Zend\Code\Generator\TypeGenerator`: was a
php-zend-code-3.4.1/CHANGELOG.md-373-  `string` before. [#30](https://github.com/zendframework/zend-code/pull/30)
##############################################
php-zend-code-3.4.1/CHANGELOG.md-396-
php-zend-code-3.4.1/CHANGELOG.md:397:- `Zend\Code\ParameterGenerator::$simple` was removed. [#30](https://github.com/zendframework/zend-code/pull/30)
php-zend-code-3.4.1/CHANGELOG.md-398-
##############################################
php-zend-code-3.4.1/docs/book/generator/examples.md-237-
php-zend-code-3.4.1/docs/book/generator/examples.md:238:In the example below, we will assume you've defined `$foo` per one of the class definitions in a
php-zend-code-3.4.1/docs/book/generator/examples.md-239-previous example.
##############################################
php-zend-code-3.4.1/docs/book/generator/reference.md-37-
php-zend-code-3.4.1/docs/book/generator/reference.md:38:The constructor passes the `$options` parameter to `setOptions()`.
php-zend-code-3.4.1/docs/book/generator/reference.md-39-
##############################################
php-zend-code-3.4.1/docs/book/migration.md-5-In 2.x, a `Zend\Code\Generator\ParameterGenerator` with name `foo` and type
php-zend-code-3.4.1/docs/book/migration.md:6:`string`, `int`, `float` or `bool` simply generated code `"$foo"`:
php-zend-code-3.4.1/docs/book/migration.md-7-
##############################################
php-zend-code-3.4.1/docs/book/migration.md-15-
php-zend-code-3.4.1/docs/book/migration.md:16:In 3.x, this code will instead produce `"string $foo"`.
php-zend-code-3.4.1/docs/book/migration.md-17-If you generate code that should run in PHP 5.x, it is advisable to strip
##############################################
php-zend-code-3.4.1/docs/book/migration.md-112-
php-zend-code-3.4.1/docs/book/migration.md:113:This code produces `public function foo(baz $bar) {}` in 2.x.
php-zend-code-3.4.1/docs/book/migration.md:114:In version 3.x, it produces `public function foo(\baz $bar) : \tab {}`.
php-zend-code-3.4.1/docs/book/migration.md-115-
##############################################
php-zend-code-3.4.1/docs/book/migration.md-118-
php-zend-code-3.4.1/docs/book/migration.md:119:## `ParameterGenerator::$simple` was removed
php-zend-code-3.4.1/docs/book/migration.md-120-
php-zend-code-3.4.1/docs/book/migration.md-121-If you extended `Zend\Code\Generator\ParameterGenerator`, be sure to check if you
php-zend-code-3.4.1/docs/book/migration.md:122:are accessing the protected static variable `$simple`: it was removed, and you should
php-zend-code-3.4.1/docs/book/migration.md-123-adapt your code by either copying it into your class or avoiding its usage.
php-zend-code-3.4.1/docs/book/migration.md-124-
php-zend-code-3.4.1/docs/book/migration.md:125:## `ParameterGenerator::$type` has changed
php-zend-code-3.4.1/docs/book/migration.md-126-
php-zend-code-3.4.1/docs/book/migration.md-127-If you extended `Zend\Code\Generator\ParameterGenerator`, be sure to check if you
php-zend-code-3.4.1/docs/book/migration.md:128:are accessing the protected variable `$type`: its type has changed.
php-zend-code-3.4.1/docs/book/migration.md-129-While it can still be used as a string via an explicit `(string)` cast, the type of
##############################################
php-zend-code-3.4.1/test/Reflection/ClassReflectionTest.php-184-
php-zend-code-3.4.1/test/Reflection/ClassReflectionTest.php:185:        eval('namespace ' . __NAMESPACE__ . '; class ' . $className . '{}');
php-zend-code-3.4.1/test/Reflection/ClassReflectionTest.php-186-
##############################################
php-zend-code-3.4.1/test/Reflection/FunctionReflectionTest.php-277-
php-zend-code-3.4.1/test/Reflection/FunctionReflectionTest.php:278:        eval('namespace ' . __NAMESPACE__ . '; function ' . $functionName . '(){}');
php-zend-code-3.4.1/test/Reflection/FunctionReflectionTest.php-279-
##############################################
php-zend-code-3.4.1/test/Reflection/MethodReflectionTest.php-333-
php-zend-code-3.4.1/test/Reflection/MethodReflectionTest.php:334:        eval('namespace ' . __NAMESPACE__ . '; class ' . $className . '{function foo(){}}');
php-zend-code-3.4.1/test/Reflection/MethodReflectionTest.php-335-
##############################################
php-zend-code-3.4.1/test/Reflection/TestAsset/closures.php-46-
php-zend-code-3.4.1/test/Reflection/TestAsset/closures.php:47:eval("\$function10 = function() { return 'function10'; };");
##############################################
php-zend-code-3.4.1/debian/upstream/changelog.old-481-- [6231: fixing http query parameters](https://github.com/zendframework/zf2/pull/6231)
php-zend-code-3.4.1/debian/upstream/changelog.old:482:- [6263: Collection attempts to access `object` property on `$this->targetElement`](https://github.com/zendframework/zf2/issues/6263)
php-zend-code-3.4.1/debian/upstream/changelog.old-483-- [6279: Return the text value in _ array key](https://github.com/zendframework/zf2/pull/6279)
##############################################
php-zend-code-3.4.1/debian/upstream/changelog.old-688-- **ZF2015-01:** Session validators were not run if set before session start.
php-zend-code-3.4.1/debian/upstream/changelog.old:689:  Essentially, the validators were writing to the `$_SESSION` superglobal before
php-zend-code-3.4.1/debian/upstream/changelog.old-690-  session start, which meant the data was overwritten once the session began.
##############################################
php-zend-code-3.4.1/debian/upstream/changelog.old-1191-- **ZF2015-01:** Session validators were not run if set before session start.
php-zend-code-3.4.1/debian/upstream/changelog.old:1192:  Essentially, the validators were writing to the `$_SESSION` superglobal before
php-zend-code-3.4.1/debian/upstream/changelog.old-1193-  session start, which meant the data was overwritten once the session began.
##############################################
php-zend-code-3.4.1/debian/upstream/changelog.old-1450-[#5374](https://github.com/zendframework/zf2/pull/5374). Essentially, the class
php-zend-code-3.4.1/debian/upstream/changelog.old:1451:was not checking if `$_SERVER['REMOTE_ADDR']` was one of the trusted proxies
php-zend-code-3.4.1/debian/upstream/changelog.old-1452-configured, and as a result, `getIpAddressFromProxy()` could return an untrusted
##############################################
php-zend-code-3.4.1/debian/upstream/changelog.old-1454-
php-zend-code-3.4.1/debian/upstream/changelog.old:1455:The class was updated to check if `$_SERVER['REMOTE_ADDR']` is in the list of
php-zend-code-3.4.1/debian/upstream/changelog.old-1456-trusted proxies, and, if so, will return that value immediately before
##############################################
php-zend-code-3.4.1/debian/upstream/changelog.old-2040-  (https://github.com/zendframework/zf2/issues/4244)
php-zend-code-3.4.1/debian/upstream/changelog.old:2041:- 4246: replaced `get_called_class()` with `get_class($this)` in non-static context
php-zend-code-3.4.1/debian/upstream/changelog.old-2042-  (https://github.com/zendframework/zf2/issues/4246)
##############################################
php-zend-code-3.4.1/debian/upstream/changelog.old-2114-  (https://github.com/zendframework/zf2/issues/3973)
php-zend-code-3.4.1/debian/upstream/changelog.old:2115:- 3980: change `HOST_DNS_OR_IPV4_OR_IPV6` to `0x13` for `$validHostTypes`
php-zend-code-3.4.1/debian/upstream/changelog.old-2116-  (https://github.com/zendframework/zf2/issues/3980)