From 761437710c3b3629cb139457f747f830c9ec9ffb Mon Sep 17 00:00:00 2001 From: Jay Klehr Date: Wed, 5 Feb 2020 13:05:09 -0700 Subject: [PATCH] bumping some package dependencies to fix some php 7.4 issues (#29) * bumping some package dependencies to fix some php 7.4 issues * fixing some local php 7.4 issues * more local fixes and a few package update tests * stripping hash off front of color value for hexdec * more package tests * more external package updates * local fixes, external package fix * another rackspace fix * testing more updates * moving another dep to dev-master * testing php 7.4 with dev-master packages * fixing some deps * Some composer updates for php 7.4 tests to pass * Location of file changed * final composer.json change for php 7.4 * maybe the real last composer update? * upgrading phpstan, setting to level 8 with a generated baseline file * having travis run same phpstan command --- .gitignore | 1 + .travis.yml | 10 +- composer.json | 59 +- library/Zend/Amf/Parse/Amf0/Serializer.php | 1 + library/Zend/Amf/Util/BinaryStream.php | 2 +- library/Zend/Barcode/Object/Code25.php | 2 +- library/Zend/Barcode/Object/Ean13.php | 4 +- library/Zend/Barcode/Object/Ean5.php | 2 +- library/Zend/Barcode/Object/Ean8.php | 2 +- library/Zend/Barcode/Object/Identcode.php | 2 +- .../Zend/Barcode/Object/ObjectAbstract.php | 6 +- library/Zend/Barcode/Object/Upca.php | 2 +- library/Zend/Barcode/Object/Upce.php | 10 +- .../Infrastructure/Adapter/Rackspace.php | 11 +- library/Zend/CodeGenerator/Php/File.php | 2 +- library/Zend/Service/StrikeIron.php | 2 +- .../Context/Zf/ApplicationConfigFile.php | 2 +- phpstan-baseline.neon | 25397 ++++++++++++++++ phpstan-bootstrap.php | 100 - phpstan.neon | 144 +- tests/Zend/CodeGenerator/Php/FileTest.php | 6 +- tests/Zend/Queue/Adapter/AdapterTest.php | 2 +- tests/runalltests.php | 2 +- 23 files changed, 25470 insertions(+), 301 deletions(-) create mode 100644 phpstan-baseline.neon diff --git a/.gitignore b/.gitignore index 1512631806..0e66a62338 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ bin/phpunit bin/phpcov bin/php-parse bin/phpstan +bin/phpstan.phar diff --git a/.travis.yml b/.travis.yml index e7edb81366..ea55de51a3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,7 +51,6 @@ script: jobs: fast_finish: true allow_failures: - - php: 7.4snapshot - php: nightly include: - php: 7.1 @@ -63,10 +62,9 @@ jobs: - php: 7.3 env: COMPOSER_ARGS="--prefer-lowest" - php: 7.3 - - php: 7.4snapshot - env: COMPOSER_ARGS="--ignore-platform-reqs --prefer-lowest" - - php: 7.4snapshot - env: COMPOSER_ARGS="--ignore-platform-reqs" + - php: 7.4 + env: COMPOSER_ARGS="--prefer-lowest" + - php: 7.4 - php: nightly env: COMPOSER_ARGS="--ignore-platform-reqs --prefer-lowest" - php: nightly @@ -76,7 +74,7 @@ jobs: php: 7.2 env: TMPDIR=/tmp USE_XDEBUG=false script: - - ./bin/phpstan analyse -l 4 --autoload-file=vendor/autoload.php --memory-limit=1024M -c phpstan.neon ./library + - composer phpstan - stage: test with coverage php: 7.2 diff --git a/composer.json b/composer.json index cb92c08491..0fa37b7b52 100644 --- a/composer.json +++ b/composer.json @@ -8,56 +8,55 @@ ], "homepage": "http://framework.zend.com/", "license": "BSD-3-Clause", - "minimum-stability": "dev", "prefer-stable": true, "require": { "diablomedia/zendframework1-acl": "^1.0.0", "diablomedia/zendframework1-application": "^1.0.0", - "diablomedia/zendframework1-auth": "^1.0.0", + "diablomedia/zendframework1-auth": "^1.0.2", "diablomedia/zendframework1-auth-adapter-dbtable": "^1.0.0", "diablomedia/zendframework1-auth-adapter-http": "^1.0.0", "diablomedia/zendframework1-auth-adapter-ldap": "^1.0.0", "diablomedia/zendframework1-auth-adapter-openid": "^1.0.0", "diablomedia/zendframework1-cache": "^1.0.0", "diablomedia/zendframework1-captcha": "^1.0.0", - "diablomedia/zendframework1-config": "^1.0.1", - "diablomedia/zendframework1-controller": "^1.0.0", + "diablomedia/zendframework1-config": "^1.0.2 || ^2.0.0", + "diablomedia/zendframework1-controller": "^1.0.3", "diablomedia/zendframework1-controller-action-helper-ajaxcontext": "^1.0.0", "diablomedia/zendframework1-controller-action-helper-autocomplete": "^1.0.0", - "diablomedia/zendframework1-controller-action-helper-contextswitch": "^1.0.0", + "diablomedia/zendframework1-controller-action-helper-contextswitch": "^1.0.3", "diablomedia/zendframework1-controller-action-helper-json": "^1.0.0", - "diablomedia/zendframework1-crypt": "^1.0.0", + "diablomedia/zendframework1-crypt": "^1.0.3", "diablomedia/zendframework1-currency": "^1.0.0", "diablomedia/zendframework1-date": "^1.0.0", - "diablomedia/zendframework1-db": "^1.0.1", + "diablomedia/zendframework1-db": "^1.0.3", "diablomedia/zendframework1-dojo": "^1.0.0", "diablomedia/zendframework1-dom": "^1.0.0", "diablomedia/zendframework1-eventmanager": "^1.0.0", - "diablomedia/zendframework1-exception": "^1.0.2", + "diablomedia/zendframework1-exception": "^1.0.4", "diablomedia/zendframework1-file": "^1.0.0", - "diablomedia/zendframework1-filter": "^1.0.0", + "diablomedia/zendframework1-filter": "^1.0.3", "diablomedia/zendframework1-filter-input": "^1.0.0", "diablomedia/zendframework1-form": "^1.0.3", "diablomedia/zendframework1-http": "^1.0.1", - "diablomedia/zendframework1-json": "^1.0.0", - "diablomedia/zendframework1-layout": "^1.0.0", - "diablomedia/zendframework1-ldap": "^1.0.1", - "diablomedia/zendframework1-loader": "^1.0.1", - "diablomedia/zendframework1-locale": "^1.0.0", + "diablomedia/zendframework1-json": "^1.0.3", + "diablomedia/zendframework1-layout": "^1.0.3", + "diablomedia/zendframework1-ldap": "^1.0.3", + "diablomedia/zendframework1-loader": "^1.0.3", + "diablomedia/zendframework1-locale": "^1.0.3", "diablomedia/zendframework1-log": "^1.0.0", "diablomedia/zendframework1-log-writer-db": "^1.0.0", "diablomedia/zendframework1-log-writer-firebug": "^1.0.0", "diablomedia/zendframework1-log-writer-mail": "^1.0.0", - "diablomedia/zendframework1-mail": "^1.0.1", + "diablomedia/zendframework1-mail": "^1.0.3", "diablomedia/zendframework1-mime": "^1.0.0", "diablomedia/zendframework1-navigation": "^1.0.0", "diablomedia/zendframework1-oauth": "^1.0.0", "diablomedia/zendframework1-openid": "^1.0.0", "diablomedia/zendframework1-paginator": "^1.0.0", "diablomedia/zendframework1-progressbar": "^1.0.0", - "diablomedia/zendframework1-registry": "^1.0.0", + "diablomedia/zendframework1-registry": "^1.0.2", "diablomedia/zendframework1-rest": "^1.0.0", - "diablomedia/zendframework1-server": "^1.0.0", + "diablomedia/zendframework1-server": "^1.0.3", "diablomedia/zendframework1-service": "^1.0.0", "diablomedia/zendframework1-service-amazon": "^1.0.0", "diablomedia/zendframework1-service-recaptcha": "^1.0.0", @@ -65,26 +64,26 @@ "diablomedia/zendframework1-session-savehandler-dbtable": "^1.0.0", "diablomedia/zendframework1-soap": "^1.0.0", "diablomedia/zendframework1-stdlib": "^1.0.0", - "diablomedia/zendframework1-test": "^1.0.2|^2.0.1", + "diablomedia/zendframework1-test": "^1.0.2 || ^2.0.1", "diablomedia/zendframework1-text": "^1.0.0", "diablomedia/zendframework1-translate": "^1.0.0", "diablomedia/zendframework1-uri": "^1.0.0", - "diablomedia/zendframework1-validate": "^1.0.0", + "diablomedia/zendframework1-validate": "^1.0.3", "diablomedia/zendframework1-validate-db": "^1.0.0", "diablomedia/zendframework1-validate-file": "^1.0.2", "diablomedia/zendframework1-validate-ldap": "^1.0.0", "diablomedia/zendframework1-validate-sitemap": "^1.0.0", - "diablomedia/zendframework1-view": "^1.0.2", + "diablomedia/zendframework1-view": "^1.0.3", "diablomedia/zendframework1-view-helper-action": "^1.0.0", "diablomedia/zendframework1-view-helper-baseurl": "^1.0.0", "diablomedia/zendframework1-view-helper-json": "^1.0.0", "diablomedia/zendframework1-view-helper-layout": "^1.0.0", - "diablomedia/zendframework1-view-helper-navigation": "^1.0.0", + "diablomedia/zendframework1-view-helper-navigation": "^1.0.3", "diablomedia/zendframework1-view-helper-paginationcontrol": "^1.0.0", "diablomedia/zendframework1-view-helper-partial": "^1.0.0", "diablomedia/zendframework1-view-helper-url": "^1.0.0", - "diablomedia/zendframework1-wildfire": "^1.0.0", - "diablomedia/zendframework1-xml": "^1.0.0", + "diablomedia/zendframework1-wildfire": "^1.0.3", + "diablomedia/zendframework1-xml": "^1.0.2", "php": ">=7.0.0" }, "autoload": { @@ -153,19 +152,11 @@ "config": { "bin-dir": "bin" }, - "repositories": [ - { - "type": "vcs", - "no-api": true, - "url": "https://github.com/diablomedia/phpstorm-stubs" - } - ], "require-dev": { - "phpunit/phpunit": "^7.0", + "phpunit/phpunit": "^7.5.15", "phpunit/dbunit": "^4.0", "phpunit/phpcov": "^5.0", - "phpstan/phpstan": "^0.9.2", - "jetbrains/phpstorm-stubs": "dev-phpstan" + "phpstan/phpstan": "0.12.4" }, "archive": { "exclude": ["/demos", "/documentation", "/tests"] @@ -174,6 +165,6 @@ "zendframework/zendframework1": ">=1.12.20" }, "scripts": { - "phpstan": "phpstan analyse -l 4 --autoload-file=vendor/autoload.php --memory-limit=1024M -c phpstan.neon ./library/" + "phpstan": "phpstan analyse --memory-limit=1024M -c phpstan.neon --ansi" } } diff --git a/library/Zend/Amf/Parse/Amf0/Serializer.php b/library/Zend/Amf/Parse/Amf0/Serializer.php index 4c438f0372..667d44ffef 100644 --- a/library/Zend/Amf/Parse/Amf0/Serializer.php +++ b/library/Zend/Amf/Parse/Amf0/Serializer.php @@ -220,6 +220,7 @@ public function writeObject($object) { // Loop each element and write the name of the property. foreach ($object as $key => &$value) { + $key = (string) $key; // skip variables starting with an _ private transient if( $key[0] == "_") continue; $this->_stream->writeUtf($key); diff --git a/library/Zend/Amf/Util/BinaryStream.php b/library/Zend/Amf/Util/BinaryStream.php index 57f00ce07c..3304ddea54 100644 --- a/library/Zend/Amf/Util/BinaryStream.php +++ b/library/Zend/Amf/Util/BinaryStream.php @@ -137,7 +137,7 @@ public function readByte() ); } - return ord($this->_stream{$this->_needle++}); + return ord($this->_stream[$this->_needle++]); } /** diff --git a/library/Zend/Barcode/Object/Code25.php b/library/Zend/Barcode/Object/Code25.php index 244e5fb809..4b8a2b70f7 100644 --- a/library/Zend/Barcode/Object/Code25.php +++ b/library/Zend/Barcode/Object/Code25.php @@ -122,7 +122,7 @@ public function getChecksum($text) $checksum = 0; for ($i = strlen($text); $i > 0; $i --) { - $checksum += intval($text{$i - 1}) * $factor; + $checksum += intval($text[$i - 1]) * $factor; $factor = 4 - $factor; } diff --git a/library/Zend/Barcode/Object/Ean13.php b/library/Zend/Barcode/Object/Ean13.php index e46036ee10..e595589246 100644 --- a/library/Zend/Barcode/Object/Ean13.php +++ b/library/Zend/Barcode/Object/Ean13.php @@ -156,7 +156,7 @@ public function getChecksum($text) $checksum = 0; for ($i = strlen($text); $i > 0; $i --) { - $checksum += intval($text{$i - 1}) * $factor; + $checksum += intval($text[$i - 1]) * $factor; $factor = 4 - $factor; } @@ -186,7 +186,7 @@ protected function _drawEan13Text() $leftPosition = $this->getQuietZone() - $characterWidth; for ($i = 0; $i < $this->_barcodeLength; $i ++) { $this->_addText( - $text{$i}, + $text[$i], $this->_fontSize * $this->_factor, $this->_rotate( $leftPosition, diff --git a/library/Zend/Barcode/Object/Ean5.php b/library/Zend/Barcode/Object/Ean5.php index b310f336b7..1183da356b 100644 --- a/library/Zend/Barcode/Object/Ean5.php +++ b/library/Zend/Barcode/Object/Ean5.php @@ -114,7 +114,7 @@ public function getChecksum($text) $checksum = 0; for ($i = 0 ; $i < $this->_barcodeLength; $i ++) { - $checksum += intval($text{$i}) * ($i % 2 ? 9 : 3); + $checksum += intval($text[$i]) * ($i % 2 ? 9 : 3); } return ($checksum % 10); diff --git a/library/Zend/Barcode/Object/Ean8.php b/library/Zend/Barcode/Object/Ean8.php index a7723e3691..960695c752 100644 --- a/library/Zend/Barcode/Object/Ean8.php +++ b/library/Zend/Barcode/Object/Ean8.php @@ -113,7 +113,7 @@ protected function _drawText() $leftPosition = $this->getQuietZone() + (3 * $this->_barThinWidth) * $this->_factor; for ($i = 0; $i < $this->_barcodeLength; $i ++) { $this->_addText( - $text{$i}, + $text[$i], $this->_fontSize * $this->_factor, $this->_rotate( $leftPosition, diff --git a/library/Zend/Barcode/Object/Identcode.php b/library/Zend/Barcode/Object/Identcode.php index 71b77ae6c6..17c0fa6aff 100644 --- a/library/Zend/Barcode/Object/Identcode.php +++ b/library/Zend/Barcode/Object/Identcode.php @@ -75,7 +75,7 @@ public function getChecksum($text) $checksum = 0; for ($i = strlen($text); $i > 0; $i --) { - $checksum += intval($text{$i - 1}) * (($i % 2) ? 4 : 9); + $checksum += intval($text[$i - 1]) * (($i % 2) ? 4 : 9); } $checksum = (10 - ($checksum % 10)) % 10; diff --git a/library/Zend/Barcode/Object/ObjectAbstract.php b/library/Zend/Barcode/Object/ObjectAbstract.php index 0d9a46c003..2c2dd02dde 100644 --- a/library/Zend/Barcode/Object/ObjectAbstract.php +++ b/library/Zend/Barcode/Object/ObjectAbstract.php @@ -457,7 +457,7 @@ public function getFactor() public function setForeColor($value) { if (preg_match('`\#[0-9A-F]{6}`', $value)) { - $this->_foreColor = hexdec($value); + $this->_foreColor = hexdec(substr($value, 1)); } elseif (is_numeric($value) && $value >= 0 && $value <= 16777125) { $this->_foreColor = intval($value); } else { @@ -488,7 +488,7 @@ public function getForeColor() public function setBackgroundColor($value) { if (preg_match('`\#[0-9A-F]{6}`', $value)) { - $this->_backgroundColor = hexdec($value); + $this->_backgroundColor = hexdec(substr($value, 1)); } elseif (is_numeric($value) && $value >= 0 && $value <= 16777125) { $this->_backgroundColor = intval($value); } else { @@ -1310,7 +1310,7 @@ protected function _drawText() for ($i = 0; $i < $textLength; $i ++) { $leftPosition = $this->getQuietZone() + $space * ($i + 0.5); $this->_addText( - $text{$i}, + $text[$i], $this->_fontSize * $this->_factor, $this->_rotate( $leftPosition, diff --git a/library/Zend/Barcode/Object/Upca.php b/library/Zend/Barcode/Object/Upca.php index 9d8ae5e87b..27ec5630f5 100644 --- a/library/Zend/Barcode/Object/Upca.php +++ b/library/Zend/Barcode/Object/Upca.php @@ -130,7 +130,7 @@ protected function _drawText() $fontSize *= 0.8; } $this->_addText( - $text{$i}, + $text[$i], $fontSize * $this->_factor, $this->_rotate( $leftPosition, diff --git a/library/Zend/Barcode/Object/Upce.php b/library/Zend/Barcode/Object/Upce.php index 237befd3bb..ada6609e67 100644 --- a/library/Zend/Barcode/Object/Upce.php +++ b/library/Zend/Barcode/Object/Upce.php @@ -74,8 +74,8 @@ protected function _getDefaultOptions() public function getText() { $text = parent::getText(); - if ($text{0} != 1) { - $text{0} = 0; + if ($text[0] != 1) { + $text[0] = 0; } return $text; } @@ -148,7 +148,7 @@ protected function _drawText() $fontSize *= 0.8; } $this->_addText( - $text{$i}, + $text[$i], $fontSize * $this->_factor, $this->_rotate( $leftPosition, @@ -208,8 +208,8 @@ protected function _validateText($value, $options = array()) public function getChecksum($text) { $text = $this->_addLeadingZeros($text, true); - if ($text{0} != 1) { - $text{0} = 0; + if ($text[0] != 1) { + $text[0] = 0; } return parent::getChecksum($text); } diff --git a/library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php b/library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php index c119afecd9..d7b4af62d8 100644 --- a/library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php +++ b/library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php @@ -57,7 +57,7 @@ class Zend_Cloud_Infrastructure_Adapter_Rackspace extends Zend_Cloud_Infrastruct * * @var array */ - protected $flavors; + protected $flavors = array(); /** * Map array between Rackspace and Infrastructure status * @@ -157,8 +157,13 @@ protected function convertAttributes($attr) } else { $result[Zend_Cloud_Infrastructure_Instance::INSTANCE_ZONE] = self::RACKSPACE_ZONE_UK; } - $result[Zend_Cloud_Infrastructure_Instance::INSTANCE_RAM] = $this->flavors[$attr['flavorId']]['ram']; - $result[Zend_Cloud_Infrastructure_Instance::INSTANCE_STORAGE] = $this->flavors[$attr['flavorId']]['disk']; + if (isset($this->flavors[$attr['flavorId']])) { + $result[Zend_Cloud_Infrastructure_Instance::INSTANCE_RAM] = $this->flavors[$attr['flavorId']]['ram']; + $result[Zend_Cloud_Infrastructure_Instance::INSTANCE_STORAGE] = $this->flavors[$attr['flavorId']]['disk']; + } else { + $result[Zend_Cloud_Infrastructure_Instance::INSTANCE_RAM] = null; + $result[Zend_Cloud_Infrastructure_Instance::INSTANCE_STORAGE] = null; + } } return $result; } diff --git a/library/Zend/CodeGenerator/Php/File.php b/library/Zend/CodeGenerator/Php/File.php index 843ce63840..0d0934d82d 100644 --- a/library/Zend/CodeGenerator/Php/File.php +++ b/library/Zend/CodeGenerator/Php/File.php @@ -171,7 +171,7 @@ public static function fromReflection(Zend_Reflection_File $reflectionFile) } } $body = implode("\n", $bodyReturn); - unset($bodyLines, $bodyReturn, $classStartLine, $classEndLine); + unset($bodyLines, $bodyReturn); } $file->setBody($body); diff --git a/library/Zend/Service/StrikeIron.php b/library/Zend/Service/StrikeIron.php index 56a923cf7b..7e992a6e3e 100644 --- a/library/Zend/Service/StrikeIron.php +++ b/library/Zend/Service/StrikeIron.php @@ -54,7 +54,7 @@ public function __construct($options = array()) * Factory method to return a preconfigured Zend_Service_StrikeIron_* * instance. * - * @param null|string $options Service options + * @param array $options Service options * @return object Zend_Service_StrikeIron_* instance * @throws Zend_Service_StrikeIron_Exception */ diff --git a/library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php b/library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php index 0be885ec1e..0df583ee47 100644 --- a/library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php +++ b/library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php @@ -134,7 +134,7 @@ public function addStringItem($key, $value, $section = 'production', $quoteValue $newLines[] = $contentLine; if ($insideSection) { // if its blank, or a section heading - if (isset($contentLines[$contentLineIndex + 1]{0}) && $contentLines[$contentLineIndex + 1]{0} == '[') { + if (isset($contentLines[$contentLineIndex + 1][0]) && $contentLines[$contentLineIndex + 1][0] == '[') { $newLines[] = $key . ' = ' . $value; $insideSection = null; } else if (!isset($contentLines[$contentLineIndex + 1])){ diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon new file mode 100644 index 0000000000..5d54a40561 --- /dev/null +++ b/phpstan-baseline.neon @@ -0,0 +1,25397 @@ +parameters: + ignoreErrors: + - + message: "#^Cannot access property \\$role on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Amf/Adobe/Auth.php + + - + message: "#^Access to an undefined property Zend_Amf_Adobe_Introspector\\:\\:\\$_ops\\.$#" + count: 2 + path: library/Zend/Amf/Adobe/Introspector.php + + - + message: "#^Cannot call method getDescription\\(\\) on Zend_Reflection_Docblock_Tag\\|false\\.$#" + count: 1 + path: library/Zend/Amf/Adobe/Introspector.php + + - + message: "#^Property Zend_Amf_Auth_Abstract\\:\\:\\$_username has no typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Auth/Abstract.php + + - + message: "#^Property Zend_Amf_Auth_Abstract\\:\\:\\$_password has no typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Auth/Abstract.php + + - + message: "#^Method Zend_Amf_Auth_Abstract\\:\\:setCredentials\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Auth/Abstract.php + + - + message: "#^Method Zend_Amf_Auth_Abstract\\:\\:setCredentials\\(\\) has parameter \\$password with no typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Auth/Abstract.php + + - + message: "#^Method Zend_Amf_Auth_Abstract\\:\\:setCredentials\\(\\) has parameter \\$username with no typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Auth/Abstract.php + + - + message: "#^Parameter \\#1 \\$date of class Zend_Date constructor expects array\\|int\\|string\\|Zend_Date\\|Zend_TimeSync_Protocol\\|null, float given\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Amf0/Deserializer.php + + - + message: "#^Method Zend_Amf_Parse_Amf0_Deserializer\\:\\:readXmlString\\(\\) should return SimpleXMLElement\\|false but returns DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Amf0/Deserializer.php + + - + message: "#^Access to an undefined property Zend_Amf_Parse_Amf0_Serializer\\:\\:\\$_mbStringFunctionsOverloaded\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Amf0/Serializer.php + + - + message: "#^Argument of an invalid type object supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Amf0/Serializer.php + + - + message: "#^Parameter \\#1 \\$stream of method Zend_Amf_Util_BinaryStream\\:\\:writeByte\\(\\) expects string, int given\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Amf0/Serializer.php + + - + message: "#^Comparison operation \"\\<\" between bool and 0 is always false\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Amf0/Serializer.php + + - + message: "#^Binary operation \"\\*\\=\" between string and 1000 results in an error\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Amf0/Serializer.php + + - + message: "#^Parameter \\#1 \\$date of class Zend_Date constructor expects array\\|int\\|string\\|Zend_Date\\|Zend_TimeSync_Protocol\\|null, float given\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Amf3/Deserializer.php + + - + message: "#^Method Zend_Amf_Parse_Amf3_Deserializer\\:\\:readXmlString\\(\\) should return SimpleXMLElement\\|false but returns DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Amf3/Deserializer.php + + - + message: "#^Parameter \\#1 \\$stream of method Zend_Amf_Util_BinaryStream\\:\\:writeByte\\(\\) expects string, int given\\.$#" + count: 11 + path: library/Zend/Amf/Parse/Amf3/Serializer.php + + - + message: "#^Access to an undefined property Zend_Amf_Parse_Amf3_Serializer\\:\\:\\$_mbStringFunctionsOverloaded\\.$#" + count: 2 + path: library/Zend/Amf/Parse/Amf3/Serializer.php + + - + message: "#^Binary operation \"\\*\" between string and 1000 results in an error\\.$#" + count: 2 + path: library/Zend/Amf/Parse/Amf3/Serializer.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Amf3/Serializer.php + + - + message: "#^Property Zend_Amf_Parse_Resource_MysqliResult\\:\\:\\$mysqli_type has no typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Resource/MysqliResult.php + + - + message: "#^Property Zend_Amf_Parse_Resource_MysqliResult\\:\\:\\$mysqli_to_php has no typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Resource/MysqliResult.php + + - + message: "#^Array has 2 duplicate keys with value 'MYSQLI_TYPE_BIT' \\(\"MYSQLI_TYPE_BIT\", \"MYSQLI_TYPE_BIT\"\\)\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Resource/MysqliResult.php + + - + message: "#^Parameter \\#1 \\$link of function mysqli_num_fields expects mysqli_result, resource given\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Resource/MysqliResult.php + + - + message: "#^Parameter \\#1 \\$result of function mysqli_fetch_field_direct expects mysqli_result, resource given\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Resource/MysqliResult.php + + - + message: "#^Cannot access property \\$type on object\\|false\\.$#" + count: 2 + path: library/Zend/Amf/Parse/Resource/MysqliResult.php + + - + message: "#^Cannot access property \\$name on object\\|false\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Resource/MysqliResult.php + + - + message: "#^Parameter \\#1 \\$result of function mysqli_fetch_assoc expects mysqli_result, resource given\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Resource/MysqliResult.php + + - + message: "#^Method Zend_Amf_Parse_Resource_Stream\\:\\:parse\\(\\) should return array but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Resource/Stream.php + + - + message: "#^Access to an undefined property Zend_Amf_Parse_Serializer\\:\\:\\$_mbStringFunctionsOverloaded\\.$#" + count: 1 + path: library/Zend/Amf/Parse/Serializer.php + + - + message: "#^Array has 2 duplicate keys with value 'flex\\.messaging\\.messages\\.ErrorMessage' \\('flex\\.messaging\\.messages\\.ErrorMessage', 'flex\\.messaging\\.messages\\.ErrorMessage'\\)\\.$#" + count: 2 + path: library/Zend/Amf/Parse/TypeLoader.php + + - + message: "#^Method Zend_Amf_Parse_TypeLoader\\:\\:loadType\\(\\) should return object\\|false but returns string\\.$#" + count: 1 + path: library/Zend/Amf/Parse/TypeLoader.php + + - + message: "#^Method Zend_Amf_Parse_TypeLoader\\:\\:loadType\\(\\) should return object\\|false but returns class\\-string\\.$#" + count: 1 + path: library/Zend/Amf/Parse/TypeLoader.php + + - + message: "#^Method Zend_Amf_Parse_TypeLoader\\:\\:getMappedClassName\\(\\) should return string\\|false but returns int\\|string\\.$#" + count: 2 + path: library/Zend/Amf/Parse/TypeLoader.php + + - + message: "#^Method Zend_Amf_Parse_TypeLoader\\:\\:setResourceLoader\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Parse/TypeLoader.php + + - + message: "#^Method Zend_Amf_Parse_TypeLoader\\:\\:addResourceDirectory\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Parse/TypeLoader.php + + - + message: "#^If condition is always true\\.$#" + count: 2 + path: library/Zend/Amf/Parse/TypeLoader.php + + - + message: "#^Parameter \\#1 \\$str of function ucwords expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Amf/Parse/TypeLoader.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Amf/Parse/TypeLoader.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: library/Zend/Amf/Parse/TypeLoader.php + + - + message: "#^Parameter \\#4 \\$length of class Zend_Amf_Value_MessageHeader constructor expects int\\|null, float given\\.$#" + count: 1 + path: library/Zend/Amf/Request.php + + - + message: "#^Property Zend_Amf_Request_Http\\:\\:\\$_rawRequest \\(string\\) does not accept string\\|false\\.$#" + count: 1 + path: library/Zend/Amf/Request/Http.php + + - + message: "#^Parameter \\#1 \\$request of method Zend_Amf_Request\\:\\:initialize\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Amf/Request/Http.php + + - + message: "#^Parameter \\#1 \\$stream of method Zend_Amf_Util_BinaryStream\\:\\:writeByte\\(\\) expects string, int given\\.$#" + count: 2 + path: library/Zend/Amf/Response.php + + - + message: "#^Method Zend_Amf_Response_Http\\:\\:isIeOverSsl\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Response/Http.php + + - + message: "#^Result of && is always false\\.$#" + count: 3 + path: library/Zend/Amf/Server.php + + - + message: "#^Strict comparison using \\=\\=\\= between null and Zend_Acl will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 2 + path: library/Zend/Amf/Server.php + + - + message: "#^Method Zend_Amf_Server\\:\\:_dispatch\\(\\) has parameter \\$source with no typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Parameter \\#1 \\$object of method Zend_Amf_Server\\:\\:_checkAcl\\(\\) expects object\\|string, null given\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, string given\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(string, string\\) given\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Call to an undefined method Zend_Server_Reflection_Class\\:\\:newInstance\\(\\)\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Call to an undefined method Zend_Server_Reflection_Method\\:\\:invokeArgs\\(\\)\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Parameter \\#1 \\$str of function base64_decode expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^If condition is always true\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Parameter \\#1 \\$message of class Zend_Amf_Value_Messaging_ErrorMessage constructor expects object, string given\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Method Zend_Amf_Server\\:\\:_errorMessage\\(\\) should return array\\|Zend_Amf_Value_Messaging_ErrorMessage but returns Zend_Amf_Value_Messaging_ErrorMessage\\|null\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Variable \\$responseType might not be defined\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Parameter \\#2 \\$responseUri of class Zend_Amf_Value_MessageBody constructor expects string, null given\\.$#" + count: 2 + path: library/Zend/Amf/Server.php + + - + message: "#^Parameter \\#3 \\$data of class Zend_Amf_Value_MessageBody constructor expects string, \\(array\\)\\|Zend_Amf_Value_Messaging_ErrorMessage given\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Parameter \\#3 \\$length of function substr expects int, int\\|false given\\.$#" + count: 2 + path: library/Zend/Amf/Server.php + + - + message: "#^Parameter \\#1 \\$str of function substr expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Amf/Server.php + + - + message: "#^Variable \\$message might not be defined\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Method Zend_Amf_Server\\:\\:_handle\\(\\) should return Zend_Amf_Response but return statement is missing\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Parameter \\#1 \\$request of method Zend_Amf_Server\\:\\:_handle\\(\\) expects Zend_Amf_Request, Zend_Amf_Request\\|null given\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Method Zend_Amf_Server\\:\\:getResponse\\(\\) should return Zend_Amf_Response but returns Zend_Amf_Response\\|null\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Method Zend_Amf_Server\\:\\:addDirectory\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Method Zend_Amf_Server\\:\\:fault\\(\\) has parameter \\$code with no typehint specified\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Call to an undefined method Reflection\\:\\:getPrototypes\\(\\)\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Argument of an invalid type array\\|object supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Amf/Server.php + + - + message: "#^Parameter \\#1 \\$length of method Zend_Amf_Util_BinaryStream\\:\\:readBytes\\(\\) expects int, float given\\.$#" + count: 1 + path: library/Zend/Amf/Util/BinaryStream.php + + - + message: "#^Method Zend_Amf_Util_BinaryStream\\:\\:writeLongUtf\\(\\) should return Zend_Amf_Util_BinaryStream but return statement is missing\\.$#" + count: 1 + path: library/Zend/Amf/Util/BinaryStream.php + + - + message: "#^Strict comparison using \\=\\=\\= between null and string will always evaluate to false\\.$#" + count: 2 + path: library/Zend/Amf/Value/MessageBody.php + + - + message: "#^Left side of && is always true\\.$#" + count: 1 + path: library/Zend/Amf/Value/Messaging/AcknowledgeMessage.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\|null given\\.$#" + count: 1 + path: library/Zend/Amf/Value/TraitsInfo.php + + - + message: "#^Offset int does not exist on array\\|null\\.$#" + count: 1 + path: library/Zend/Amf/Value/TraitsInfo.php + + - + message: "#^Method Zend_Amf_Value_TraitsInfo\\:\\:getAllProperties\\(\\) should return array but returns array\\|null\\.$#" + count: 1 + path: library/Zend/Amf/Value/TraitsInfo.php + + - + message: "#^Cannot call method bootstrap\\(\\) on Zend_Application_Bootstrap_Bootstrapper\\|null\\.$#" + count: 1 + path: library/Zend/Application/Resource/Dojo.php + + - + message: "#^Cannot access property \\$view on Zend_Application_Bootstrap_Bootstrapper\\|null\\.$#" + count: 1 + path: library/Zend/Application/Resource/Dojo.php + + - + message: "#^Method Zend_Application_Resource_Multidb\\:\\:getDb\\(\\) should return Zend_Db_Adapter_Abstract but returns Zend_Db_Adapter_Abstract\\|null\\.$#" + count: 1 + path: library/Zend/Application/Resource/Multidb.php + + - + message: "#^Method Zend_Application_Resource_Multidb\\:\\:_setDefault\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Application/Resource/Multidb.php + + - + message: "#^Method Zend_Barcode\\:\\:render\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode.php + + - + message: "#^Method Zend_Barcode\\:\\:setBarcodeFont\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode.php + + - + message: "#^Property Zend_Barcode_Object_Code128\\:\\:\\$_codingMap has no typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Code128.php + + - + message: "#^Method Zend_Barcode_Object_Code39\\:\\:getChecksum\\(\\) should return int but returns int\\|string\\|false\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Code39.php + + - + message: "#^Property Zend_Barcode_Object_Ean13\\:\\:\\$_parities has no typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean13.php + + - + message: "#^Method Zend_Barcode_Object_Ean13\\:\\:_drawEan13Text\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean13.php + + - + message: "#^Parameter \\#4 \\$font of method Zend_Barcode_Object_ObjectAbstract\\:\\:_addText\\(\\) expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean13.php + + - + message: "#^Property Zend_Barcode_Object_Ean2\\:\\:\\$_parities has no typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean2.php + + - + message: "#^Method Zend_Barcode_Object_Ean2\\:\\:_getParity\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean2.php + + - + message: "#^Method Zend_Barcode_Object_Ean2\\:\\:_getParity\\(\\) has parameter \\$i with no typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean2.php + + - + message: "#^Property Zend_Barcode_Object_Ean5\\:\\:\\$_parities has no typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean5.php + + - + message: "#^Binary operation \"\\*\" between int\\|string and int results in an error\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean5.php + + - + message: "#^Binary operation \"\\-\" between int\\|string and 1 results in an error\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean5.php + + - + message: "#^Method Zend_Barcode_Object_Ean5\\:\\:_getParity\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean5.php + + - + message: "#^Method Zend_Barcode_Object_Ean5\\:\\:_getParity\\(\\) has parameter \\$i with no typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean5.php + + - + message: "#^Parameter \\#4 \\$font of method Zend_Barcode_Object_ObjectAbstract\\:\\:_addText\\(\\) expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean8.php + + - + message: "#^Method Zend_Barcode_Object_Ean8\\:\\:_validateText\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean8.php + + - + message: "#^Parameter \\#1 \\$adapter of class Zend_Validate_Barcode constructor expects string\\|Zend_Config\\|Zend_Validate_Barcode_AdapterInterface, array\\ given\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Ean8.php + + - + message: "#^Parameter \\#4 \\$font of method Zend_Barcode_Object_ObjectAbstract\\:\\:_addText\\(\\) expects string, int\\|string given\\.$#" + count: 2 + path: library/Zend/Barcode/Object/Error.php + + - + message: "#^Return type \\(void\\) of method Zend_Barcode_Object_Error\\:\\:_prepareBarcode\\(\\) should be compatible with return type \\(array\\) of method Zend_Barcode_Object_ObjectAbstract\\:\\:_prepareBarcode\\(\\)$#" + count: 1 + path: library/Zend/Barcode/Object/Error.php + + - + message: "#^Return type \\(void\\) of method Zend_Barcode_Object_Error\\:\\:_calculateBarcodeWidth\\(\\) should be compatible with return type \\(int\\) of method Zend_Barcode_Object_ObjectAbstract\\:\\:_calculateBarcodeWidth\\(\\)$#" + count: 1 + path: library/Zend/Barcode/Object/Error.php + + - + message: "#^Method Zend_Barcode_Object_Identcode\\:\\:getTextToDisplay\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Identcode.php + + - + message: "#^Method Zend_Barcode_Object_Identcode\\:\\:validateText\\(\\) should return string but return statement is missing\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Identcode.php + + - + message: "#^Method Zend_Barcode_Object_Leitcode\\:\\:getTextToDisplay\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Leitcode.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_getDefaultOptions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Property Zend_Barcode_Object_ObjectAbstract\\:\\:\\$_factor \\(int\\) does not accept float\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Property Zend_Barcode_Object_ObjectAbstract\\:\\:\\$_foreColor \\(int\\) does not accept float\\|int\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Parameter \\#2 \\$subject of function preg_match expects string, int given\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Parameter \\#1 \\$str of function substr expects string, int given\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Property Zend_Barcode_Object_ObjectAbstract\\:\\:\\$_backgroundColor \\(int\\) does not accept float\\|int\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Call to an undefined method Zend_Barcode_Object_ObjectAbstract\\:\\:getChecksum\\(\\)\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:setBarcodeFont\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Comparison operation \"\\<\\=\" between \\*NEVER\\* and 5 is always true\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Comparison operation \"\\>\\=\" between \\*NEVER\\* and 1 is always true\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Result of && is always true\\.$#" + count: 2 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Result of \\|\\| is always true\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_addInstruction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_addPolygon\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_addText\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Strict comparison using \\=\\=\\= between int and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_checkText\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_checkRatio\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_checkFontAndOrientation\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_calculateBarcodeHeight\\(\\) should return int but returns float\\|int\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Property Zend_Barcode_Object_ObjectAbstract\\:\\:\\$_height \\(int\\) does not accept float\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:getHeight\\(\\) should return int but returns float\\|int\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Property Zend_Barcode_Object_ObjectAbstract\\:\\:\\$_width \\(int\\) does not accept float\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:getWidth\\(\\) should return int but returns float\\|int\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Property Zend_Barcode_Object_ObjectAbstract\\:\\:\\$_offsetLeft \\(int\\) does not accept float\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Property Zend_Barcode_Object_ObjectAbstract\\:\\:\\$_offsetTop \\(int\\) does not accept float\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_drawBarcode\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_drawBorder\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_drawText\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Parameter \\#4 \\$font of method Zend_Barcode_Object_ObjectAbstract\\:\\:_addText\\(\\) expects string, int\\|string given\\.$#" + count: 2 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:validateText\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_validateText\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Parameter \\#1 \\$adapter of class Zend_Validate_Barcode constructor expects string\\|Zend_Config\\|Zend_Validate_Barcode_AdapterInterface, array\\ given\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_checkParams\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_preDrawBarcode\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Method Zend_Barcode_Object_ObjectAbstract\\:\\:_postDrawBarcode\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/ObjectAbstract.php + + - + message: "#^Property Zend_Barcode_Object_Royalmail\\:\\:\\$_rows has no typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Royalmail.php + + - + message: "#^Property Zend_Barcode_Object_Royalmail\\:\\:\\$_columns has no typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Royalmail.php + + - + message: "#^Parameter \\#4 \\$font of method Zend_Barcode_Object_ObjectAbstract\\:\\:_addText\\(\\) expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Upca.php + + - + message: "#^Property Zend_Barcode_Object_Upce\\:\\:\\$_parities has no typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Upce.php + + - + message: "#^Parameter \\#4 \\$font of method Zend_Barcode_Object_ObjectAbstract\\:\\:_addText\\(\\) expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Upce.php + + - + message: "#^Method Zend_Barcode_Object_Upce\\:\\:_validateText\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Upce.php + + - + message: "#^Parameter \\#1 \\$adapter of class Zend_Validate_Barcode constructor expects string\\|Zend_Config\\|Zend_Validate_Barcode_AdapterInterface, array\\ given\\.$#" + count: 1 + path: library/Zend/Barcode/Object/Upce.php + + - + message: "#^Property Zend_Barcode_Renderer_Image\\:\\:\\$_resource \\(resource\\) does not accept resource\\|false\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#1 \\$im of function imagecolorallocate expects resource, resource\\|false given\\.$#" + count: 3 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#1 \\$im of function imagefilledrectangle expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#1 \\$im of function imagesx expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#1 \\$im of function imagesy expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#2 \\$x1 of function imagefilledrectangle expects int, float\\|int given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#3 \\$y1 of function imagefilledrectangle expects int, float\\|int given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#4 \\$x2 of function imagefilledrectangle expects int, float\\|int given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#5 \\$y2 of function imagefilledrectangle expects int, float\\|int given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func expects callable\\(\\)\\: mixed, string given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Method Zend_Barcode_Renderer_Image\\:\\:_drawPolygon\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Method Zend_Barcode_Renderer_Image\\:\\:_drawText\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#1 \\$font of function imagefontwidth expects int, int\\|string given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#1 \\$font of function imagefontheight expects int, int\\|string given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#2 \\$font of function imagestring expects int, int\\|string given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Variable \\$positionX might not be defined\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#4 \\$x of function imagettftext expects int, float given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Parameter \\#5 \\$y of function imagettftext expects int, float given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Variable \\$width might not be defined\\.$#" + count: 2 + path: library/Zend/Barcode/Renderer/Image.php + + - + message: "#^Method Zend_Barcode_Renderer_Pdf\\:\\:_drawPolygon\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Pdf.php + + - + message: "#^Variable \\$y might not be defined\\.$#" + count: 8 + path: library/Zend/Barcode/Renderer/Pdf.php + + - + message: "#^Variable \\$x might not be defined\\.$#" + count: 5 + path: library/Zend/Barcode/Renderer/Pdf.php + + - + message: "#^Method Zend_Barcode_Renderer_Pdf\\:\\:_drawText\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Pdf.php + + - + message: "#^Parameter \\#2 \\$font of method Zend_Barcode_Renderer_Pdf\\:\\:widthForStringUsingFontSize\\(\\) expects Zend_Pdf_Font, Zend_Pdf_Resource_Font given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Pdf.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Pdf.php + + - + message: "#^Cannot access offset int on string\\|false\\.$#" + count: 2 + path: library/Zend/Barcode/Renderer/Pdf.php + + - + message: "#^Call to an undefined method Zend_Pdf_Font\\:\\:glyphNumbersForCharacters\\(\\)\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Pdf.php + + - + message: "#^Call to an undefined method Zend_Pdf_Font\\:\\:widthsForGlyphs\\(\\)\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Pdf.php + + - + message: "#^Call to an undefined method Zend_Pdf_Font\\:\\:getUnitsPerEm\\(\\)\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Pdf.php + + - + message: "#^Property Zend_Barcode_Renderer_RendererAbstract\\:\\:\\$_resource has no typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/RendererAbstract.php + + - + message: "#^Method Zend_Barcode_Renderer_RendererAbstract\\:\\:_drawInstructionList\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/RendererAbstract.php + + - + message: "#^Method Zend_Barcode_Renderer_RendererAbstract\\:\\:_drawPolygon\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/RendererAbstract.php + + - + message: "#^Method Zend_Barcode_Renderer_RendererAbstract\\:\\:_drawText\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/RendererAbstract.php + + - + message: "#^Parameter \\#2 \\$value of method DOMElement\\:\\:setAttribute\\(\\) expects string, int given\\.$#" + count: 2 + path: library/Zend/Barcode/Renderer/Svg.php + + - + message: "#^Parameter \\#1 \\$supportHeight of method Zend_Barcode_Renderer_RendererAbstract\\:\\:_adjustPosition\\(\\) expects float, int\\|string given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Svg.php + + - + message: "#^Parameter \\#2 \\$supportWidth of method Zend_Barcode_Renderer_RendererAbstract\\:\\:_adjustPosition\\(\\) expects float, int\\|string given\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Svg.php + + - + message: "#^Method Zend_Barcode_Renderer_Svg\\:\\:_readRootElement\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Svg.php + + - + message: "#^Property Zend_Barcode_Renderer_Svg\\:\\:\\$_rootElement \\(DOMElement\\) does not accept DOMElement\\|null\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Svg.php + + - + message: "#^Method Zend_Barcode_Renderer_Svg\\:\\:_appendRootElement\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Svg.php + + - + message: "#^Method Zend_Barcode_Renderer_Svg\\:\\:_drawPolygon\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Svg.php + + - + message: "#^Method Zend_Barcode_Renderer_Svg\\:\\:_drawText\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Barcode/Renderer/Svg.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter\\:\\:replaceDocument\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter\\:\\:getClient\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter.php + + - + message: "#^Return type \\(void\\) of method Zend_Cloud_DocumentService_Adapter_SimpleDb\\:\\:createCollection\\(\\) should be compatible with return type \\(array\\) of method Zend_Cloud_DocumentService_Adapter\\:\\:createCollection\\(\\)$#" + count: 2 + path: library/Zend/Cloud/DocumentService/Adapter/SimpleDb.php + + - + message: "#^Parameter \\#2 \\$query of method Zend_Cloud_DocumentService_Adapter_SimpleDb\\:\\:query\\(\\) expects string\\|Zend_Cloud_DocumentService_Adapter_SimpleDb_Query, Zend_Cloud_DocumentService_Query given\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/SimpleDb.php + + - + message: "#^Return type \\(void\\) of method Zend_Cloud_DocumentService_Adapter_SimpleDb\\:\\:insertDocument\\(\\) should be compatible with return type \\(bool\\) of method Zend_Cloud_DocumentService_Adapter\\:\\:insertDocument\\(\\)$#" + count: 2 + path: library/Zend/Cloud/DocumentService/Adapter/SimpleDb.php + + - + message: "#^Argument of an invalid type array\\|null supplied for foreach, only iterables are supported\\.$#" + count: 2 + path: library/Zend/Cloud/DocumentService/Adapter/SimpleDb.php + + - + message: "#^Parameter \\#2 \\$attributes of method Zend_Cloud_DocumentService_Adapter_SimpleDb\\:\\:_makeAttributes\\(\\) expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/SimpleDb.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter_SimpleDb\\:\\:fetchDocument\\(\\) should return Zend_Cloud_DocumentService_Document\\|false but returns array\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/SimpleDb.php + + - + message: "#^Return type \\(Zend_Cloud_DocumentService_DocumentSet\\) of method Zend_Cloud_DocumentService_Adapter_SimpleDb\\:\\:query\\(\\) should be compatible with return type \\(array\\) of method Zend_Cloud_DocumentService_Adapter\\:\\:query\\(\\)$#" + count: 2 + path: library/Zend/Cloud/DocumentService/Adapter/SimpleDb.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter_SimpleDb\\:\\:_resolveAttributes\\(\\) has parameter \\$returnDocument with no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/SimpleDb.php + + - + message: "#^Variable \\$attr might not be defined\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/SimpleDb.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter_SimpleDb_Query\\:\\:assemble\\(\\) has parameter \\$collectionName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/SimpleDb/Query.php + + - + message: "#^Return type \\(string\\) of method Zend_Cloud_DocumentService_Adapter_SimpleDb_Query\\:\\:assemble\\(\\) should be compatible with return type \\(array\\) of method Zend_Cloud_DocumentService_Query\\:\\:assemble\\(\\)$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/SimpleDb/Query.php + + - + message: "#^Return type \\(bool\\) of method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:createCollection\\(\\) should be compatible with return type \\(array\\) of method Zend_Cloud_DocumentService_Adapter\\:\\:createCollection\\(\\)$#" + count: 2 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Parameter \\#2 \\$query of method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:query\\(\\) expects string\\|Zend_Cloud_DocumentService_Adapter_WindowsAzure_Query, Zend_Cloud_DocumentService_Query given\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:insertDocument\\(\\) has parameter \\$collectionName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:insertDocument\\(\\) should return bool but return statement is missing\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:replaceDocument\\(\\) has parameter \\$collectionName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:replaceDocument\\(\\) should return bool but return statement is missing\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:_validateCompositeKey\\(\\) invoked with 2 parameters, 1 required\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Parameter \\#1 \\$document of method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:_validateFields\\(\\) expects array\\|Zend_Cloud_DocumentService_Document, array\\|null given\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:updateDocument\\(\\) should return bool but return statement is missing\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Parameter \\#1 \\$values of method Zend_Service_WindowsAzure_Storage_DynamicTableEntity\\:\\:setAzureValues\\(\\) expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:deleteDocument\\(\\) has parameter \\$collectionName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Cannot call method getPartitionKey\\(\\) on Zend_Service_WindowsAzure_Storage_TableEntity\\|null\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Cannot call method getRowKey\\(\\) on Zend_Service_WindowsAzure_Storage_TableEntity\\|null\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Parameter \\#1 \\$entity of method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:_resolveAttributes\\(\\) expects Zend_Service_WindowsAzure_Storage_TableEntity, Zend_Service_WindowsAzure_Storage_TableEntity\\|null given\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Return type \\(Zend_Cloud_DocumentService_DocumentSet\\) of method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:query\\(\\) should be compatible with return type \\(array\\) of method Zend_Cloud_DocumentService_Adapter\\:\\:query\\(\\)$#" + count: 2 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:select\\(\\) has parameter \\$fields with no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:select\\(\\) should return Zend_Cloud_DocumentService_Query but returns Zend_Cloud_DocumentService_Adapter_WindowsAzure_Query\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Default value of the parameter \\#2 \\$collectionName \\(false\\) of method Zend_Cloud_DocumentService_Adapter_WindowsAzure\\:\\:_validateDocumentId\\(\\) is incompatible with type string\\|null\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Adapter/WindowsAzure.php + + - + message: "#^Instanceof between \\*NEVER\\* and ArrayAccess will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Document.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Document.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Cloud/DocumentService/Query.php + + - + message: "#^Property Zend_Cloud_Exception\\:\\:\\$_clientException \\(Exception\\) does not accept Exception\\|null\\.$#" + count: 1 + path: library/Zend/Cloud/Exception.php + + - + message: "#^Method Zend_Cloud_Exception\\:\\:getClientException\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/Exception.php + + - + message: "#^Parameter \\#1 \\$host of function ssh2_connect expects string, string\\|true given\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/AbstractAdapter.php + + - + message: "#^Parameter \\#1 \\$session of function ssh2_auth_password expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/AbstractAdapter.php + + - + message: "#^Parameter \\#1 \\$session of function ssh2_exec expects resource, resource\\|false given\\.$#" + count: 2 + path: library/Zend/Cloud/Infrastructure/Adapter/AbstractAdapter.php + + - + message: "#^Parameter \\#1 \\$channel of function ssh2_fetch_stream expects resource, resource\\|false given\\.$#" + count: 2 + path: library/Zend/Cloud/Infrastructure/Adapter/AbstractAdapter.php + + - + message: "#^Parameter \\#1 \\$socket of function stream_set_blocking expects resource, resource\\|false given\\.$#" + count: 5 + path: library/Zend/Cloud/Infrastructure/Adapter/AbstractAdapter.php + + - + message: "#^Parameter \\#1 \\$source of function stream_get_contents expects resource, resource\\|false given\\.$#" + count: 4 + path: library/Zend/Cloud/Infrastructure/Adapter/AbstractAdapter.php + + - + message: "#^Method Zend_Cloud_Infrastructure_Adapter_AbstractAdapter\\:\\:deployInstance\\(\\) should return array\\|string but returns array\\\\|string\\|false\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/AbstractAdapter.php + + - + message: "#^Method Zend_Cloud_Infrastructure_Adapter_Ec2\\:\\:convertAttributes\\(\\) never returns bool so it can be removed from the return typehint\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Ec2.php + + - + message: "#^Access to an undefined property Zend_Cloud_Infrastructure_Adapter_Ec2\\:\\:\\$error\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Ec2.php + + - + message: "#^Parameter \\#2 \\$data of class Zend_Cloud_Infrastructure_Instance constructor expects array\\|object\\|null, array\\|bool given\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Ec2.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Ec2.php + + - + message: "#^Cannot call method toArray\\(\\) on Zend_Service_Rackspace_Servers_ServerList\\|true\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Cannot access offset 0 on array\\|true\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Cannot call method toArray\\(\\) on Zend_Service_Rackspace_Servers_Server\\|true\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Parameter \\#2 \\$data of class Zend_Cloud_Infrastructure_Instance constructor expects array\\|object\\|null, array\\|bool given\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Cannot call method toArray\\(\\) on Zend_Service_Rackspace_Servers_ImageList\\|true\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Parameter \\#2 \\$adapter of class Zend_Cloud_Infrastructure_ImageList constructor expects object\\|null, Zend_Service_Rackspace_Servers_ImageList\\|true given\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Offset 'username' does not exist on array\\|null\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Offset 'password' does not exist on array\\|null\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Parameter \\#2 \\$str of function explode expects string, array\\|string given\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Variable \\$total might not be defined\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Variable \\$used might not be defined\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Variable \\$usage might not be defined\\.$#" + count: 2 + path: library/Zend/Cloud/Infrastructure/Adapter/Rackspace.php + + - + message: "#^Property Zend_Cloud_Infrastructure_Image\\:\\:\\$adapter \\(object\\) does not accept object\\|null\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/Image.php + + - + message: "#^Invalid array key type array\\.$#" + count: 2 + path: library/Zend/Cloud/Infrastructure/Image.php + + - + message: "#^Property Zend_Cloud_Infrastructure_ImageList\\:\\:\\$adapter \\(object\\) does not accept object\\|null\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/ImageList.php + + - + message: "#^Method Zend_Cloud_Infrastructure_ImageList\\:\\:offsetSet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/ImageList.php + + - + message: "#^Method Zend_Cloud_Infrastructure_ImageList\\:\\:offsetUnset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/ImageList.php + + - + message: "#^Invalid array key type array\\.$#" + count: 2 + path: library/Zend/Cloud/Infrastructure/Instance.php + + - + message: "#^Method Zend_Cloud_Infrastructure_InstanceList\\:\\:offsetSet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/InstanceList.php + + - + message: "#^Method Zend_Cloud_Infrastructure_InstanceList\\:\\:offsetUnset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/Infrastructure/InstanceList.php + + - + message: "#^Method Zend_Cloud_QueueService_Adapter\\:\\:getClient\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter.php + + - + message: "#^Offset 30 does not exist on string\\|null\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/Sqs.php + + - + message: "#^Parameter \\#2 \\$timeout of method Zend_Service_Amazon_Sqs\\:\\:create\\(\\) expects int\\|null, string given\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/Sqs.php + + - + message: "#^Offset 'visibility_timeout' does not exist on array\\|null\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/Sqs.php + + - + message: "#^Undefined variable\\: \\$httpAdapter$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/WindowsAzure.php + + - + message: "#^Parameter \\#2 \\$metadata of method Zend_Service_WindowsAzure_Storage_Queue\\:\\:createQueue\\(\\) expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/WindowsAzure.php + + - + message: "#^Access to an undefined property object\\:\\:\\$Name\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_QueueService_Adapter_WindowsAzure\\:\\:storeQueueMetadata\\(\\) with return type void returns void but should not return anything\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/WindowsAzure.php + + - + message: "#^Result of method Zend_Service_WindowsAzure_Storage_Queue\\:\\:setQueueMetadata\\(\\) \\(void\\) is used\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/WindowsAzure.php + + - + message: "#^Offset 'ttl' does not exist on array\\|null\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/WindowsAzure.php + + - + message: "#^Parameter \\#2 \\$numOfMessages of method Zend_Service_WindowsAzure_Storage_Queue\\:\\:getMessages\\(\\) expects string, int given\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/WindowsAzure.php + + - + message: "#^Parameter \\#4 \\$peek of method Zend_Service_WindowsAzure_Storage_Queue\\:\\:getMessages\\(\\) expects string, false given\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_QueueService_Adapter_WindowsAzure\\:\\:deleteMessage\\(\\) with return type void returns void but should not return anything\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/WindowsAzure.php + + - + message: "#^Result of method Zend_Service_WindowsAzure_Storage_Queue\\:\\:deleteMessage\\(\\) \\(void\\) is used\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/WindowsAzure.php + + - + message: "#^Parameter \\#2 \\$numOfMessages of method Zend_Service_WindowsAzure_Storage_Queue\\:\\:peekMessages\\(\\) expects string, int given\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_QueueService_Adapter_ZendQueue\\:\\:deleteQueue\\(\\) should return bool but return statement is missing\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/ZendQueue.php + + - + message: "#^Parameter \\#1 \\$messages of method Zend_Cloud_QueueService_Adapter_ZendQueue\\:\\:_makeMessages\\(\\) expects array, Iterator given\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Adapter/ZendQueue.php + + - + message: "#^Property Zend_Cloud_QueueService_Message\\:\\:\\$_body has no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Message.php + + - + message: "#^Property Zend_Cloud_QueueService_Message\\:\\:\\$_clientMessage has no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Message.php + + - + message: "#^Method Zend_Cloud_QueueService_Message\\:\\:getMessage\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/QueueService/Message.php + + - + message: "#^Method Zend_Cloud_StorageService_Adapter\\:\\:storeMetadata\\(\\) has parameter \\$metadata with no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter.php + + - + message: "#^Method Zend_Cloud_StorageService_Adapter\\:\\:getClient\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter.php + + - + message: "#^Property Zend_Cloud_StorageService_Adapter_FileSystem\\:\\:\\$_directory \\(string\\) does not accept string\\|false\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/FileSystem.php + + - + message: "#^Return type \\(void\\) of method Zend_Cloud_StorageService_Adapter_FileSystem\\:\\:storeItem\\(\\) should be compatible with return type \\(bool\\) of method Zend_Cloud_StorageService_Adapter\\:\\:storeItem\\(\\)$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/FileSystem.php + + - + message: "#^Variable \\$path in isset\\(\\) always exists and is not nullable\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/FileSystem.php + + - + message: "#^Parameter \\#1 \\$arr1 of function array_diff expects array, array\\\\|false given\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/FileSystem.php + + - + message: "#^Parameter \\#1 \\$filename of function stat expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/FileSystem.php + + - + message: "#^Method Zend_Cloud_StorageService_Adapter_FileSystem\\:\\:fetchMetadata\\(\\) should return array but returns array\\\\|false\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/FileSystem.php + + - + message: "#^Method Zend_Cloud_StorageService_Adapter_FileSystem\\:\\:storeMetadata\\(\\) has parameter \\$metadata with no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/FileSystem.php + + - + message: "#^Parameter \\#3 \\$headers of method Zend_Service_Rackspace_Files\\:\\:getObject\\(\\) expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Cannot call method getContent\\(\\) on Zend_Service_Rackspace_Files_Object\\|true\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Return type \\(void\\) of method Zend_Cloud_StorageService_Adapter_Rackspace\\:\\:storeItem\\(\\) should be compatible with return type \\(bool\\) of method Zend_Cloud_StorageService_Adapter\\:\\:storeItem\\(\\)$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Parameter \\#4 \\$metadata of method Zend_Service_Rackspace_Files\\:\\:storeObject\\(\\) expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Parameter \\#5 \\$metadata of method Zend_Service_Rackspace_Files\\:\\:copyObject\\(\\) expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Cannot assign offset 'metadata' to array\\|bool\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Method Zend_Cloud_StorageService_Adapter_Rackspace\\:\\:getAllFolders\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Method Zend_Cloud_StorageService_Adapter_Rackspace\\:\\:getAllFolders\\(\\) has parameter \\$path with no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Method Zend_Cloud_StorageService_Adapter_Rackspace\\:\\:getAllFolders\\(\\) has parameter \\$resultArray with no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Variable \\$options might not be defined\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Argument of an invalid type bool\\|Zend_Service_Rackspace_Files_ObjectList supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Parameter \\#2 \\$options of method Zend_Service_Rackspace_Files\\:\\:getObjects\\(\\) expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Argument of an invalid type Zend_Service_Rackspace_Files_ObjectList\\|true supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/Rackspace.php + + - + message: "#^Property Zend_Cloud_StorageService_Adapter_S3\\:\\:\\$_defaultBucketName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/S3.php + + - + message: "#^Property Zend_Cloud_StorageService_Adapter_S3\\:\\:\\$_defaultBucketAsDomain has no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/S3.php + + - + message: "#^Method Zend_Cloud_StorageService_Adapter_S3\\:\\:deleteItem\\(\\) should return bool but return statement is missing\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/S3.php + + - + message: "#^Method Zend_Cloud_StorageService_Adapter_S3\\:\\:storeMetadata\\(\\) has parameter \\$metadata with no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/S3.php + + - + message: "#^Parameter \\#1 \\$filename of function fopen expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php + + - + message: "#^Parameter \\#1 \\$fp of function fwrite expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php + + - + message: "#^Parameter \\#2 \\$str of function fwrite expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php + + - + message: "#^Parameter \\#1 \\$fp of function fclose expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php + + - + message: "#^Parameter \\#1 \\$file of function file_put_contents expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_StorageService_Adapter_WindowsAzure\\:\\:storeItem\\(\\) should return bool but return statement is missing\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_StorageService_Adapter_WindowsAzure\\:\\:renameItem\\(\\) with return type void returns void but should not return anything\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php + + - + message: "#^Result of method Zend_Cloud_StorageService_Adapter_WindowsAzure\\:\\:moveItem\\(\\) \\(void\\) is used\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_StorageService_Adapter_WindowsAzure\\:\\:storeMetadata\\(\\) has parameter \\$metadata with no typehint specified\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php + + - + message: "#^Undefined variable\\: \\$destinationPath$#" + count: 1 + path: library/Zend/Cloud/StorageService/Adapter/WindowsAzure.php + + - + message: "#^Method Zend_Cloud_StorageService_Factory\\:\\:getAdapter\\(\\) should return Zend_Cloud_StorageService_Adapter but returns Zend_Cloud_DocumentService_Adapter\\|Zend_Cloud_QueueService_Adapter\\|Zend_Cloud_StorageService_Adapter\\.$#" + count: 1 + path: library/Zend/Cloud/StorageService/Factory.php + + - + message: "#^Method Zend_CodeGenerator_Abstract\\:\\:setSourceContent\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Abstract.php + + - + message: "#^Method Zend_CodeGenerator_Abstract\\:\\:_init\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Abstract.php + + - + message: "#^Method Zend_CodeGenerator_Abstract\\:\\:_prepare\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Abstract.php + + - + message: "#^Method Zend_CodeGenerator_Abstract\\:\\:generate\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Abstract.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Class.php + + - + message: "#^Property Zend_CodeGenerator_Php_Class\\:\\:\\$_docblock \\(Zend_CodeGenerator_Php_Docblock\\) does not accept Zend_CodeGenerator_Php_Docblock\\|null\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Class.php + + - + message: "#^Left side of && is always true\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Class.php + + - + message: "#^Method Zend_CodeGenerator_Php_Class\\:\\:_init\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Class.php + + - + message: "#^Method Zend_CodeGenerator_Php_Docblock_Tag\\:\\:setPluginLoader\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Docblock/Tag.php + + - + message: "#^Method Zend_CodeGenerator_Php_Docblock_Tag\\:\\:factory\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Docblock/Tag.php + + - + message: "#^Method Zend_CodeGenerator_Php_Docblock_Tag\\:\\:factory\\(\\) has parameter \\$tagName with no typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Docblock/Tag.php + + - + message: "#^Call to an undefined method Zend_Reflection_Docblock_Tag\\:\\:getUrl\\(\\)\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Docblock/Tag/License.php + + - + message: "#^Call to an undefined method Zend_Reflection_Docblock_Tag\\:\\:getType\\(\\)\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Docblock/Tag/Param.php + + - + message: "#^Call to an undefined method Zend_Reflection_Docblock_Tag\\:\\:getVariableName\\(\\)\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Docblock/Tag/Param.php + + - + message: "#^Call to an undefined method Zend_Reflection_Docblock_Tag\\:\\:getType\\(\\)\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Docblock/Tag/Return.php + + - + message: "#^Property Zend_CodeGenerator_Php_File\\:\\:\\$_markerDocblock has no typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/File.php + + - + message: "#^Property Zend_CodeGenerator_Php_File\\:\\:\\$_markerRequire has no typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/File.php + + - + message: "#^Property Zend_CodeGenerator_Php_File\\:\\:\\$_markerClass has no typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/File.php + + - + message: "#^Method Zend_CodeGenerator_Php_File\\:\\:registerFileCodeGenerator\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/File.php + + - + message: "#^Method Zend_CodeGenerator_Php_File\\:\\:registerFileCodeGenerator\\(\\) has parameter \\$fileName with no typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/File.php + + - + message: "#^Possibly invalid array key type \\(array\\|string\\)\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/File.php + + - + message: "#^Variable \\$class might not be defined\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/File.php + + - + message: "#^Left side of && is always true\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/File.php + + - + message: "#^Parameter \\#2 \\$subject of function preg_match expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/File.php + + - + message: "#^Parameter \\#3 \\$subject of function preg_replace expects array\\|string, string\\|null given\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/File.php + + - + message: "#^Method Zend_CodeGenerator_Php_File\\:\\:generate\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/File.php + + - + message: "#^Method Zend_CodeGenerator_Php_File\\:\\:write\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/File.php + + - + message: "#^Method Zend_CodeGenerator_Php_Method\\:\\:setFinal\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Method.php + + - + message: "#^Parameter \\#1 \\$reflectionDocblock of static method Zend_CodeGenerator_Php_Docblock\\:\\:fromReflection\\(\\) expects Zend_Reflection_Docblock, Zend_Reflection_Docblock\\|false given\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Property.php + + - + message: "#^Method Zend_CodeGenerator_Php_Property\\:\\:getDefaultValue\\(\\) should return Zend_CodeGenerator_Php_Property_DefaultValue but returns Zend_CodeGenerator_Php_Property_DefaultValue\\|null\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Property.php + + - + message: "#^Else branch is unreachable because ternary operator condition is always true\\.$#" + count: 2 + path: library/Zend/CodeGenerator/Php/Property.php + + - + message: "#^Method Zend_CodeGenerator_Php_Property_DefaultValue\\:\\:_init\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Property/DefaultValue.php + + - + message: "#^Call to an undefined method RecursiveIterator\\:\\:offsetSet\\(\\)\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Property/DefaultValue.php + + - + message: "#^Call to an undefined method RecursiveIterator\\:\\:getArrayCopy\\(\\)\\.$#" + count: 1 + path: library/Zend/CodeGenerator/Php/Property/DefaultValue.php + + - + message: "#^Parameter \\#1 \\$input of function str_repeat expects string, int\\|string given\\.$#" + count: 3 + path: library/Zend/CodeGenerator/Php/Property/DefaultValue.php + + - + message: "#^Property Zend_Console_Getopt\\:\\:\\$_getoptConfig has no typehint specified\\.$#" + count: 1 + path: library/Zend/Console/Getopt.php + + - + message: "#^Variable \\$getoptConfig in isset\\(\\) always exists and is not nullable\\.$#" + count: 1 + path: library/Zend/Console/Getopt.php + + - + message: "#^Parameter \\#1 \\$rules of method Zend_Console_Getopt\\:\\:_addRulesModeGnu\\(\\) expects string, array given\\.$#" + count: 1 + path: library/Zend/Console/Getopt.php + + - + message: "#^Method Zend_Console_Getopt\\:\\:checkRequiredArguments\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Console/Getopt.php + + - + message: "#^Parameter \\#1 \\$flag of method Zend_Console_Getopt\\:\\:_parseSingleOption\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Console/Getopt.php + + - + message: "#^Parameter \\#1 \\$str of function substr expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Console/Getopt.php + + - + message: "#^Parameter \\#3 \\$subject of function preg_replace expects array\\|string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Debug.php + + - + message: "#^Parameter \\#1 \\$string of function htmlspecialchars expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Debug.php + + - + message: "#^Method Zend_Feed\\:\\:lookupNamespace\\(\\) has parameter \\$prefix with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:getElementsByTagName\\(\\)\\.$#" + count: 3 + path: library/Zend/Feed.php + + - + message: "#^Parameter \\#2 \\$newvalue of function ini_set expects string, int given\\.$#" + count: 2 + path: library/Zend/Feed.php + + - + message: "#^Undefined variable\\: \\$php_errormsg$#" + count: 2 + path: library/Zend/Feed.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:attributes\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed.php + + - + message: "#^Cannot call method getPath\\(\\) on string\\|Zend_Uri_Http\\.$#" + count: 1 + path: library/Zend/Feed.php + + - + message: "#^Call to an undefined method Zend_Uri\\:\\:setPath\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed.php + + - + message: "#^Call to an undefined method Zend_Uri\\:\\:setQuery\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed.php + + - + message: "#^Call to an undefined method Zend_Uri\\:\\:setFragment\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed.php + + - + message: "#^Cannot call method getHeader\\(\\) on Zend_Feed_Builder_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Abstract.php + + - + message: "#^Cannot call method getEntries\\(\\) on Zend_Feed_Builder_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Abstract.php + + - + message: "#^Parameter \\#2 \\$newvalue of function ini_set expects string, int given\\.$#" + count: 1 + path: library/Zend/Feed/Abstract.php + + - + message: "#^Parameter \\#1 \\$xml of static method Zend_Xml_Security\\:\\:scan\\(\\) expects string, DOMDocument\\|DOMElement\\|string given\\.$#" + count: 1 + path: library/Zend/Feed/Abstract.php + + - + message: "#^Variable \\$php_errormsg in isset\\(\\) is never defined\\.$#" + count: 1 + path: library/Zend/Feed/Abstract.php + + - + message: "#^Cannot access property \\$childNodes on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Abstract.php + + - + message: "#^Access to an undefined property Zend_Feed_Abstract\\:\\:\\$_entryElementName\\.$#" + count: 1 + path: library/Zend/Feed/Abstract.php + + - + message: "#^Access to an undefined property Zend_Feed_Abstract\\:\\:\\$_entryClassName\\.$#" + count: 1 + path: library/Zend/Feed/Abstract.php + + - + message: "#^Parameter \\#1 \\$node of method DOMDocument\\:\\:saveXML\\(\\) expects DOMNode\\|null, DOMElement\\|SimpleXMLElement\\|null given\\.$#" + count: 1 + path: library/Zend/Feed/Abstract.php + + - + message: "#^Cannot call method getElementsByTagName\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 2 + path: library/Zend/Feed/Atom.php + + - + message: "#^Cannot access property \\$version on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Atom.php + + - + message: "#^Cannot access property \\$actualEncoding on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Atom.php + + - + message: "#^Property Zend_Feed_Element\\:\\:\\$_element \\(DOMDocument\\|DOMElement\\|string\\) does not accept DOMNode\\.$#" + count: 1 + path: library/Zend/Feed/Atom.php + + - + message: "#^Cannot call method createElement\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 25 + path: library/Zend/Feed/Atom.php + + - + message: "#^Access to an undefined property ArrayObject\\:\\:\\$link\\.$#" + count: 2 + path: library/Zend/Feed/Atom.php + + - + message: "#^Access to an undefined property ArrayObject\\:\\:\\$title\\.$#" + count: 1 + path: library/Zend/Feed/Atom.php + + - + message: "#^Cannot call method createCDATASection\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 5 + path: library/Zend/Feed/Atom.php + + - + message: "#^Return type \\(void\\) of method Zend_Feed_Atom\\:\\:_mapFeedEntries\\(\\) should be compatible with return type \\(DOMElement\\) of method Zend_Feed_Abstract\\:\\:_mapFeedEntries\\(\\)$#" + count: 1 + path: library/Zend/Feed/Atom.php + + - + message: "#^Cannot call method createElementNS\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 2 + path: library/Zend/Feed/Atom.php + + - + message: "#^Cannot access property \\$ownerDocument on DOMDocument\\|DOMElement\\|string\\.$#" + count: 3 + path: library/Zend/Feed/Atom.php + + - + message: "#^Cannot access property \\$version on DOMDocument\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Atom.php + + - + message: "#^Cannot access property \\$actualEncoding on DOMDocument\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Atom.php + + - + message: "#^Parameter \\#1 \\$importednode of method DOMDocument\\:\\:importNode\\(\\) expects DOMNode, DOMDocument\\|DOMElement\\|string given\\.$#" + count: 1 + path: library/Zend/Feed/Atom.php + + - + message: "#^Parameter \\#1 \\$port of method Zend_Uri_Http\\:\\:setPort\\(\\) expects string, int given\\.$#" + count: 1 + path: library/Zend/Feed/Builder/Header.php + + - + message: "#^Property Zend_Feed_Element\\:\\:\\$_element \\(DOMDocument\\|DOMElement\\|string\\) does not accept DOMElement\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot access property \\$ownerDocument on DOMDocument\\|DOMElement\\|string\\.$#" + count: 8 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method importNode\\(\\) on DOMDocument\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Property Zend_Feed_Element\\:\\:\\$_element \\(DOMDocument\\|DOMElement\\|string\\) does not accept DOMNode\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method appendChild\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 3 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot access property \\$version on DOMDocument\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot access property \\$actualEncoding on DOMDocument\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Parameter \\#1 \\$importednode of method DOMDocument\\:\\:importNode\\(\\) expects DOMNode, DOMDocument\\|DOMElement\\|string given\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method saveXML\\(\\) on DOMDocument\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method createElementNS\\(\\) on DOMDocument\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method createElement\\(\\) on DOMDocument\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Element.php + + - + message: "#^Method Zend_Feed_Element\\:\\:__isset\\(\\) should return bool but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot access property \\$childNodes on DOMDocument\\|DOMElement\\|string\\.$#" + count: 4 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot access property \\$nodeValue on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method hasAttributeNS\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method hasAttribute\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method getAttributeNS\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method getAttribute\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method setAttributeNS\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Method Zend_Feed_Element\\:\\:offsetSet\\(\\) should return string but returns void\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method setAttribute\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Method Zend_Feed_Element\\:\\:offsetSet\\(\\) should return string but returns DOMAttr\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method removeAttributeNS\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Cannot call method removeAttribute\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Element.php + + - + message: "#^Constructor of class Zend_Feed_Entry_Abstract has an unused parameter \\$uri\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Abstract.php + + - + message: "#^Parameter \\#2 \\$newvalue of function ini_set expects string, int given\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Abstract.php + + - + message: "#^Parameter \\#1 \\$xml of static method Zend_Xml_Security\\:\\:scan\\(\\) expects string, DOMNode\\|SimpleXMLElement\\|string given\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Abstract.php + + - + message: "#^Variable \\$php_errormsg in isset\\(\\) is never defined\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Abstract.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:getElementsByTagName\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Abstract.php + + - + message: "#^Call to an undefined method Zend_Http_Client\\:\\:setHeader\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Atom.php + + - + message: "#^Parameter \\#2 \\$newvalue of function ini_set expects string, int given\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Atom.php + + - + message: "#^Variable \\$php_errormsg in isset\\(\\) is never defined\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Atom.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:getElementsByTagName\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Atom.php + + - + message: "#^Access to an undefined property Zend_Http_Client\\:\\:\\$responseBody\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Atom.php + + - + message: "#^Cannot access property \\$parentNode on DOMDocument\\|DOMElement\\|string\\.$#" + count: 2 + path: library/Zend/Feed/Entry/Atom.php + + - + message: "#^Cannot access property \\$ownerDocument on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Atom.php + + - + message: "#^Cannot call method importNode\\(\\) on DOMDocument\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Atom.php + + - + message: "#^Property Zend_Feed_Element\\:\\:\\$_element \\(DOMDocument\\|DOMElement\\|string\\) does not accept DOMNode\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Atom.php + + - + message: "#^Cannot call method replaceChild\\(\\) on DOMNode\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Entry/Atom.php + + - + message: "#^Cannot call method lookupPrefix\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 2 + path: library/Zend/Feed/Entry/Rss.php + + - + message: "#^Result of && is always true\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub.php + + - + message: "#^Call to an undefined method Zend_Feed_Reader_EntryInterface\\|Zend_Feed_Reader_FeedInterface\\:\\:getHubs\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub.php + + - + message: "#^Result of \\|\\| is always false\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/CallbackAbstract.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/CallbackAbstract.php + + - + message: "#^Method Zend_Feed_Pubsubhubbub_CallbackAbstract\\:\\:_detectCallbackUrl\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/CallbackAbstract.php + + - + message: "#^Cannot assign offset string to array\\|false\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/CallbackAbstract.php + + - + message: "#^Parameter \\#1 \\$str of function trim expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/CallbackAbstract.php + + - + message: "#^Method Zend_Feed_Pubsubhubbub_CallbackInterface\\:\\:handle\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/CallbackInterface.php + + - + message: "#^Method Zend_Feed_Pubsubhubbub_CallbackInterface\\:\\:setHttpResponse\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/CallbackInterface.php + + - + message: "#^Method Zend_Feed_Pubsubhubbub_HttpResponse\\:\\:getHeader\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/HttpResponse.php + + - + message: "#^Parameter \\#2 \\$value of method Zend_Feed_Pubsubhubbub_HttpResponse\\:\\:setHeader\\(\\) expects string, int given\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/HttpResponse.php + + - + message: "#^Parameter \\#1 \\$str of function strtolower expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Model/ModelAbstract.php + + - + message: "#^Cannot access property \\$created_time on Zend_Db_Table_Row_Abstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Model/Subscription.php + + - + message: "#^Cannot call method toArray\\(\\) on Zend_Db_Table_Row_Abstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Model/Subscription.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Publisher.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Subscriber.php + + - + message: "#^Method Zend_Feed_Pubsubhubbub_Subscriber\\:\\:subscribeAll\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Subscriber.php + + - + message: "#^Method Zend_Feed_Pubsubhubbub_Subscriber\\:\\:unsubscribeAll\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Subscriber.php + + - + message: "#^Method Zend_Feed_Pubsubhubbub_Subscriber\\:\\:_doRequest\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Subscriber.php + + - + message: "#^Parameter \\#1 \\$prefix of function uniqid expects string, int given\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Subscriber.php + + - + message: "#^Property Zend_Feed_Pubsubhubbub_Subscriber\\:\\:\\$_testStaticToken has no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Subscriber.php + + - + message: "#^Method Zend_Feed_Pubsubhubbub_Subscriber\\:\\:setTestStaticToken\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Subscriber.php + + - + message: "#^Method Zend_Feed_Pubsubhubbub_Subscriber\\:\\:setTestStaticToken\\(\\) has parameter \\$token with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Subscriber.php + + - + message: "#^Parameter \\#1 \\$haystack of function stripos expects string, bool given\\.$#" + count: 5 + path: library/Zend/Feed/Pubsubhubbub/Subscriber/Callback.php + + - + message: "#^Parameter \\#1 \\$feed of method Zend_Feed_Pubsubhubbub_Subscriber_Callback\\:\\:setFeedUpdate\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Subscriber/Callback.php + + - + message: "#^Parameter \\#2 \\$value of method Zend_Controller_Response_Abstract\\:\\:setHeader\\(\\) expects string, int given\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Subscriber/Callback.php + + - + message: "#^Offset 'hub_verify_token' does not exist on array\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Pubsubhubbub/Subscriber/Callback.php + + - + message: "#^Property Zend_Feed_Reader\\:\\:\\$_httpConditionalGet has no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Property Zend_Feed_Reader\\:\\:\\$_pluginLoader has no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Property Zend_Feed_Reader\\:\\:\\$_prefixPaths has no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Property Zend_Feed_Reader\\:\\:\\$_extensions has no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Method Zend_Feed_Reader\\:\\:getCache\\(\\) should return Zend_Cache_Core but returns Zend_Cache_Core\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Right side of && is always true\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Elseif condition is always true\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Call to an undefined method Zend_Feed_Reader_EntryInterface\\|Zend_Feed_Reader_FeedInterface\\:\\:setOriginalSourceUri\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Cannot access property \\$ownerDocument on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Parameter \\#1 \\$feed of static method Zend_Feed_Reader\\:\\:detectType\\(\\) expects DOMDocument\\|string\\|Zend_Feed_Abstract, DOMDocument\\|null given\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Feed_Reader_Feed_Rss constructor expects DOMDocument, DOMDocument\\|null given\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Feed_Reader_Feed_Atom constructor expects DOMDocument, DOMDocument\\|null given\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Feed_Reader_Feed_Rss constructor expects DOMDocument, DOMDocument\\|SimpleXMLElement given\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Parameter \\#1 \\$entry of class Zend_Feed_Reader_Entry_Atom constructor expects DOMElement, DOMElement\\|SimpleXMLElement\\|null given\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Feed_Reader_Feed_Atom constructor expects DOMDocument, DOMDocument\\|SimpleXMLElement given\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Parameter \\#2 \\$newvalue of function ini_set expects string, int given\\.$#" + count: 2 + path: library/Zend/Feed/Reader.php + + - + message: "#^Undefined variable\\: \\$php_errormsg$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Method Zend_Feed_Reader\\:\\:findFeedLinks\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Method Zend_Feed_Reader\\:\\:findFeedLinks\\(\\) has parameter \\$uri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Call to an undefined method \\(DOMDocument&Zend_Feed_Reader_FeedInterface\\)\\|\\(Zend_Feed_Abstract&Zend_Feed_Reader_FeedInterface\\)\\:\\:getDomDocument\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Variable \\$php_errormsg in isset\\(\\) is never defined\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 13 + path: library/Zend/Feed/Reader.php + + - + message: "#^Method Zend_Feed_Reader\\:\\:setPluginLoader\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader.php + + - + message: "#^Cannot call method getAuthors\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getContent\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getDateCreated\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getDateModified\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getDescription\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Return type \\(string\\) of method Zend_Feed_Reader_Entry_Atom\\:\\:getEnclosure\\(\\) should be compatible with return type \\(stdClass\\) of method Zend_Feed_Reader_EntryInterface\\:\\:getEnclosure\\(\\)$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getEnclosure\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getId\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getLinks\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Method Zend_Feed_Reader_Entry_Atom\\:\\:getPermalink\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getTitle\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getCommentCount\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getCommentLink\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getCommentFeedLink\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getCategories\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Cannot call method getSource\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Method Zend_Feed_Reader_Entry_Atom\\:\\:setXpath\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Atom.php + + - + message: "#^Parameter \\#2 \\$entryKey of method Zend_Feed_Reader_EntryAbstract\\:\\:__construct\\(\\) expects int, string given\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getAuthors\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 4 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Argument of an invalid type DOMNodeList\\|false supplied for foreach, only iterables are supported\\.$#" + count: 3 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getContent\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getDate\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getDateModified\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getDescription\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Return type \\(string\\) of method Zend_Feed_Reader_Entry_Rss\\:\\:getEnclosure\\(\\) should be compatible with return type \\(stdClass\\) of method Zend_Feed_Reader_EntryInterface\\:\\:getEnclosure\\(\\)$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getAttribute\\(\\) on DOMNode\\|null\\.$#" + count: 3 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 3 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getEnclosure\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getId\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getLinks\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getCategories\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Method Zend_Feed_Reader_Entry_Rss\\:\\:getPermalink\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getTitle\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Return type \\(string\\|null\\) of method Zend_Feed_Reader_Entry_Rss\\:\\:getCommentCount\\(\\) should be compatible with return type \\(int\\) of method Zend_Feed_Reader_EntryInterface\\:\\:getCommentCount\\(\\)$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getCommentCount\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 3 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getCommentLink\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Cannot call method getCommentFeedLink\\(\\) on Zend_Feed_Reader_Extension_EntryAbstract\\|null\\.$#" + count: 3 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Method Zend_Feed_Reader_Entry_Rss\\:\\:setXpath\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Entry/Rss.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: library/Zend/Feed/Reader/EntryAbstract.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(mixed, string\\) given\\.$#" + count: 1 + path: library/Zend/Feed/Reader/EntryAbstract.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 10 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Argument of an invalid type DOMNodeList\\|false supplied for foreach, only iterables are supported\\.$#" + count: 3 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 9 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Cannot call method getAttribute\\(\\) on DOMNode\\|null\\.$#" + count: 4 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Cannot access property \\$nodeValue on DOMNode\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Parameter \\#1 \\$importednode of method DOMDocument\\:\\:importNode\\(\\) expects DOMNode, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Entry\\:\\:_collectXhtml\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Entry\\:\\:_collectXhtml\\(\\) has parameter \\$prefix with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Entry\\:\\:_collectXhtml\\(\\) has parameter \\$xhtml with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Entry\\:\\:getPermalink\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Cannot access property \\$value on DOMNode\\|null\\.$#" + count: 3 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Entry\\:\\:getCommentFeedLink\\(\\) has parameter \\$type with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Parameter \\#1 \\$source of class Zend_Feed_Reader_Feed_Atom_Source constructor expects DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Entry\\:\\:_absolutiseUri\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Entry\\:\\:_absolutiseUri\\(\\) has parameter \\$link with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Cannot access property \\$nodeValue on DOMElement\\|null\\.$#" + count: 6 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Entry\\:\\:_getAuthor\\(\\) should return string\\|null but returns array\\\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Entry\\:\\:_registerNamespaces\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Entry\\:\\:_getAtomType\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Entry.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 4 + path: library/Zend/Feed/Reader/Extension/Atom/Feed.php + + - + message: "#^Argument of an invalid type DOMNodeList\\|false supplied for foreach, only iterables are supported\\.$#" + count: 3 + path: library/Zend/Feed/Reader/Extension/Atom/Feed.php + + - + message: "#^Cannot access property \\$nodeValue on DOMNode\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Feed.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Feed.php + + - + message: "#^Cannot access property \\$nodeValue on DOMElement\\|null\\.$#" + count: 6 + path: library/Zend/Feed/Reader/Extension/Atom/Feed.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Feed\\:\\:_getAuthor\\(\\) should return string\\|null but returns array\\\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Feed.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Feed\\:\\:_absolutiseUri\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Feed.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Feed\\:\\:_absolutiseUri\\(\\) has parameter \\$link with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Feed.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Feed\\:\\:_registerNamespaces\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Feed.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Atom_Feed\\:\\:_getAtomType\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Atom/Feed.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Content_Entry\\:\\:getContent\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Content/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Content_Entry\\:\\:_registerNamespaces\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Content/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_CreativeCommons_Entry\\:\\:getLicense\\(\\) has parameter \\$index with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/CreativeCommons/Entry.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Feed_Reader_Extension_CreativeCommons_Feed constructor expects DOMDocument, DOMDocument\\|null given\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/CreativeCommons/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_CreativeCommons_Entry\\:\\:_registerNamespaces\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/CreativeCommons/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_CreativeCommons_Feed\\:\\:getLicense\\(\\) has parameter \\$index with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/CreativeCommons/Feed.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 4 + path: library/Zend/Feed/Reader/Extension/DublinCore/Feed.php + + - + message: "#^Argument of an invalid type DOMNodeList\\|false supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/DublinCore/Feed.php + + - + message: "#^Method Zend_Feed_Reader_Extension_EntryAbstract\\:\\:getDomDocument\\(\\) should return DOMDocument but returns DOMDocument\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/EntryAbstract.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/EntryAbstract.php + + - + message: "#^Method Zend_Feed_Reader_Extension_FeedAbstract\\:\\:setXpathPrefix\\(\\) has parameter \\$prefix with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_Extension_FeedAbstract\\:\\:setXpathPrefix\\(\\) should return Zend_Feed_Reader_Feed_Atom but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_Extension_FeedAbstract\\:\\:_registerNamespaces\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Podcast_Entry\\:\\:_registerNamespaces\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Podcast/Entry.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Podcast/Feed.php + + - + message: "#^Argument of an invalid type DOMNodeList\\|false supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Podcast/Feed.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Podcast_Feed\\:\\:_registerNamespaces\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Podcast/Feed.php + + - + message: "#^Binary operation \"\\+\" between string and 0 results in an error\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Slash/Entry.php + + - + message: "#^Method Zend_Feed_Reader_Extension_Thread_Entry\\:\\:getInReplyTo\\(\\) should return string but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Extension/Thread/Entry.php + + - + message: "#^Cannot call method getAuthors\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getCopyright\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getDateCreated\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getDateModified\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getDescription\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getGenerator\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getId\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getLanguage\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getBaseUrl\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getLink\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getImage\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getFeedLink\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getTitle\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getHubs\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Cannot call method getCategories\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Method Zend_Feed_Reader_Feed_Atom\\:\\:_registerNamespaces\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom.php + + - + message: "#^Return type \\(void\\) of method Zend_Feed_Reader_Feed_Atom_Source\\:\\:count\\(\\) should be compatible with return type \\(int\\) of method Countable\\:\\:count\\(\\)$#" + count: 2 + path: library/Zend/Feed/Reader/Feed/Atom/Source.php + + - + message: "#^Return type \\(void\\) of method Zend_Feed_Reader_Feed_Atom_Source\\:\\:count\\(\\) should be compatible with return type \\(int\\) of method Zend_Feed_Reader_FeedAbstract\\:\\:count\\(\\)$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom/Source.php + + - + message: "#^Return type \\(void\\) of method Zend_Feed_Reader_Feed_Atom_Source\\:\\:current\\(\\) should be compatible with return type \\(Zend_Feed_Reader_EntryInterface\\) of method Zend_Feed_Reader_FeedAbstract\\:\\:current\\(\\)$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom/Source.php + + - + message: "#^Return type \\(void\\) of method Zend_Feed_Reader_Feed_Atom_Source\\:\\:key\\(\\) should be compatible with return type \\(int\\) of method Zend_Feed_Reader_FeedAbstract\\:\\:key\\(\\)$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom/Source.php + + - + message: "#^Return type \\(void\\) of method Zend_Feed_Reader_Feed_Atom_Source\\:\\:valid\\(\\) should be compatible with return type \\(bool\\) of method Iterator\\\\:\\:valid\\(\\)$#" + count: 2 + path: library/Zend/Feed/Reader/Feed/Atom/Source.php + + - + message: "#^Return type \\(void\\) of method Zend_Feed_Reader_Feed_Atom_Source\\:\\:valid\\(\\) should be compatible with return type \\(bool\\) of method Zend_Feed_Reader_FeedAbstract\\:\\:valid\\(\\)$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Atom/Source.php + + - + message: "#^Cannot call method getAuthors\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 3 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Argument of an invalid type DOMNodeList\\|false supplied for foreach, only iterables are supported\\.$#" + count: 2 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Call to an undefined method Zend_Feed_Reader_Extension_FeedAbstract\\:\\:getCopyright\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot call method getCopyright\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot call method getDate\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot call method getDateModified\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Call to an undefined method Zend_Feed_Reader_Extension_FeedAbstract\\:\\:getDescription\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot call method getDescription\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Call to an undefined method Zend_Feed_Reader_Extension_FeedAbstract\\:\\:getId\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot call method getId\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Call to an undefined method Zend_Feed_Reader_Extension_FeedAbstract\\:\\:getLanguage\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot call method getLanguage\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot call method getLink\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot call method getFeedLink\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot call method getGenerator\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Call to an undefined method Zend_Feed_Reader_Extension_FeedAbstract\\:\\:getTitle\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot call method getTitle\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot call method getHubs\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Cannot call method getCategories\\(\\) on Zend_Feed_Reader_Extension_FeedAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Method Zend_Feed_Reader_Feed_Rss\\:\\:_indexEntries\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Method Zend_Feed_Reader_Feed_Rss\\:\\:_registerNamespaces\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/Feed/Rss.php + + - + message: "#^Method Zend_Feed_Reader_FeedAbstract\\:\\:setOriginalSourceUri\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Parameter \\#2 \\$entryKey of class Zend_Feed_Reader_Entry_Rss constructor expects string, int given\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_FeedAbstract\\:\\:getElement\\(\\) should return DOMElement but returns DOMElement\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_FeedAbstract\\:\\:next\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_FeedAbstract\\:\\:rewind\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_FeedAbstract\\:\\:getExtensions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_FeedAbstract\\:\\:__call\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_FeedAbstract\\:\\:__call\\(\\) has parameter \\$args with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_FeedAbstract\\:\\:__call\\(\\) has parameter \\$method with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(mixed, mixed\\) given\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_FeedAbstract\\:\\:_loadExtensions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_FeedAbstract\\:\\:_indexEntries\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Reader_FeedAbstract\\:\\:_registerNamespaces\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedAbstract.php + + - + message: "#^Property Zend_Feed_Reader_FeedSet\\:\\:\\$rss has no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedSet.php + + - + message: "#^Property Zend_Feed_Reader_FeedSet\\:\\:\\$rdf has no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedSet.php + + - + message: "#^Property Zend_Feed_Reader_FeedSet\\:\\:\\$atom has no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedSet.php + + - + message: "#^Call to an undefined method DOMNode\\:\\:getAttribute\\(\\)\\.$#" + count: 11 + path: library/Zend/Feed/Reader/FeedSet.php + + - + message: "#^Method Zend_Feed_Reader_FeedSet\\:\\:_absolutiseUri\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedSet.php + + - + message: "#^Method Zend_Feed_Reader_FeedSet\\:\\:_absolutiseUri\\(\\) has parameter \\$link with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedSet.php + + - + message: "#^Method Zend_Feed_Reader_FeedSet\\:\\:_absolutiseUri\\(\\) has parameter \\$uri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedSet.php + + - + message: "#^Call to an undefined method Zend_Uri\\:\\:getPath\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedSet.php + + - + message: "#^Call to an undefined method Zend_Uri\\:\\:getHost\\(\\)\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedSet.php + + - + message: "#^Method Zend_Feed_Reader_FeedSet\\:\\:_canonicalizePath\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedSet.php + + - + message: "#^Method Zend_Feed_Reader_FeedSet\\:\\:_canonicalizePath\\(\\) has parameter \\$path with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Reader/FeedSet.php + + - + message: "#^Cannot call method getElementsByTagNameNS\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Rss.php + + - + message: "#^Property Zend_Feed_Element\\:\\:\\$_element \\(DOMDocument\\|DOMElement\\|string\\) does not accept DOMElement\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Rss.php + + - + message: "#^Cannot call method getElementsByTagName\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 1 + path: library/Zend/Feed/Rss.php + + - + message: "#^Cannot call method createElement\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 41 + path: library/Zend/Feed/Rss.php + + - + message: "#^Access to an undefined property ArrayObject\\:\\:\\$title\\.$#" + count: 2 + path: library/Zend/Feed/Rss.php + + - + message: "#^Cannot call method createCDATASection\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 7 + path: library/Zend/Feed/Rss.php + + - + message: "#^Access to an undefined property ArrayObject\\:\\:\\$link\\.$#" + count: 2 + path: library/Zend/Feed/Rss.php + + - + message: "#^Access to an undefined property ArrayObject\\:\\:\\$itunes\\.$#" + count: 10 + path: library/Zend/Feed/Rss.php + + - + message: "#^Cannot call method createElementNS\\(\\) on DOMDocument\\|DOMElement\\|string\\.$#" + count: 15 + path: library/Zend/Feed/Rss.php + + - + message: "#^Parameter \\#2 \\$array \\(ArrayObject\\) of method Zend_Feed_Rss\\:\\:_mapFeedEntries\\(\\) should be compatible with parameter \\$array \\(array\\) of method Zend_Feed_Abstract\\:\\:_mapFeedEntries\\(\\)$#" + count: 1 + path: library/Zend/Feed/Rss.php + + - + message: "#^Return type \\(void\\) of method Zend_Feed_Rss\\:\\:_mapFeedEntries\\(\\) should be compatible with return type \\(DOMElement\\) of method Zend_Feed_Abstract\\:\\:_mapFeedEntries\\(\\)$#" + count: 1 + path: library/Zend/Feed/Rss.php + + - + message: "#^Cannot access property \\$ownerDocument on DOMDocument\\|DOMElement\\|string\\.$#" + count: 3 + path: library/Zend/Feed/Rss.php + + - + message: "#^Cannot access property \\$version on DOMDocument\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Rss.php + + - + message: "#^Cannot access property \\$actualEncoding on DOMDocument\\|null\\.$#" + count: 2 + path: library/Zend/Feed/Rss.php + + - + message: "#^Parameter \\#1 \\$importednode of method DOMDocument\\:\\:importNode\\(\\) expects DOMNode, DOMDocument\\|DOMElement\\|string given\\.$#" + count: 1 + path: library/Zend/Feed/Rss.php + + - + message: "#^Method Zend_Feed_Writer\\:\\:setPluginLoader\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer.php + + - + message: "#^Method Zend_Feed_Writer\\:\\:lcfirst\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer.php + + - + message: "#^Method Zend_Feed_Writer\\:\\:lcfirst\\(\\) has parameter \\$str with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:setEncoding\\(\\) has parameter \\$encoding with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:setEncoding\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:remove\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:setType\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:setReference\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:setReference\\(\\) has parameter \\$reference with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:getReference\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:setWhen\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:setWhen\\(\\) has parameter \\$date with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:getWhen\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:setBy\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:getBy\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:setComment\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:setComment\\(\\) has parameter \\$comment with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Deleted\\:\\:getComment\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Deleted.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:addAuthor\\(\\) has parameter \\$email with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:addAuthor\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:addAuthor\\(\\) has parameter \\$uri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:addAuthor\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:addAuthors\\(\\) should return array but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setEncoding\\(\\) has parameter \\$encoding with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setEncoding\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setCopyright\\(\\) has parameter \\$copyright with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setCopyright\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setContent\\(\\) has parameter \\$content with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setContent\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setDateCreated\\(\\) has parameter \\$date with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setDateCreated\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setDateModified\\(\\) has parameter \\$date with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setDateModified\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setDescription\\(\\) has parameter \\$description with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setDescription\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setId\\(\\) has parameter \\$id with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setId\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setLink\\(\\) has parameter \\$link with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setLink\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setCommentCount\\(\\) has parameter \\$count with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setCommentCount\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setCommentLink\\(\\) has parameter \\$link with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setCommentLink\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setCommentFeedLink\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setCommentFeedLinks\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setTitle\\(\\) has parameter \\$title with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setTitle\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:addCategory\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:addCategories\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setEnclosure\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:remove\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setType\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(mixed, string\\) given\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Parameter \\#1 \\$encoding of method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setEncoding\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Entry\\:\\:setSource\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Extension_ITunes_Entry\\:\\:setItunesBlock\\(\\) should return Zend_Feed_Writer_Extension_ITunes_Entry but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Extension/ITunes/Entry.php + + - + message: "#^Method Zend_Feed_Writer_Feed\\:\\:addTombstone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed.php + + - + message: "#^Method Zend_Feed_Writer_Feed\\:\\:addEntry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed.php + + - + message: "#^Method Zend_Feed_Writer_Feed\\:\\:removeEntry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed.php + + - + message: "#^Method Zend_Feed_Writer_Feed\\:\\:getEntry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:addAuthor\\(\\) has parameter \\$email with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:addAuthor\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:addAuthor\\(\\) has parameter \\$uri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:addAuthor\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:addAuthors\\(\\) should return array but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setCopyright\\(\\) has parameter \\$copyright with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setCopyright\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setDateCreated\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setDateModified\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setLastBuildDate\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setDescription\\(\\) has parameter \\$description with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setDescription\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setGenerator\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setGenerator\\(\\) has parameter \\$uri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setGenerator\\(\\) has parameter \\$version with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setGenerator\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setImage\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setIcon\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setLanguage\\(\\) has parameter \\$language with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setLanguage\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setLink\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setFeedLink\\(\\) has parameter \\$link with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setFeedLink\\(\\) has parameter \\$type with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setFeedLink\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setTitle\\(\\) has parameter \\$title with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setTitle\\(\\) should return string\\|null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setEncoding\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setBaseUrl\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:addHub\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:addHubs\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:addCategory\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:addCategories\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:setType\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Feed_FeedAbstract\\:\\:remove\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Access to an undefined property Zend_Feed_Writer_Feed_FeedAbstract\\:\\:\\$_extensions\\.$#" + count: 2 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(mixed, string\\) given\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Feed/FeedAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Renderer_Entry_Atom\\:\\:_setLink\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/Entry/Atom.php + + - + message: "#^Method Zend_Feed_Writer_Renderer_Entry_Atom\\:\\:_loadXhtml\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/Entry/Atom.php + + - + message: "#^Method Zend_Feed_Writer_Renderer_Entry_Atom\\:\\:_loadXhtml\\(\\) has parameter \\$content with no typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/Entry/Atom.php + + - + message: "#^Cannot cast tidy to string\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/Entry/Atom.php + + - + message: "#^Cannot access property \\$documentElement on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/Entry/Atom.php + + - + message: "#^Cannot call method hasAttribute\\(\\) on DOMElement\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/Feed/Atom.php + + - + message: "#^Cannot call method setAttribute\\(\\) on DOMElement\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/Feed/Atom.php + + - + message: "#^Parameter \\#1 \\$root of method Zend_Feed_Writer_Renderer_RendererAbstract\\:\\:setRootElement\\(\\) expects DOMElement, DOMElement\\|null given\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/Feed/Atom.php + + - + message: "#^Parameter \\#1 \\$str of function strtolower expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/Feed/Atom/AtomAbstract.php + + - + message: "#^Parameter \\#1 \\$container of method Zend_Feed_Writer_Renderer_Feed_Atom_AtomAbstract\\:\\:__construct\\(\\) expects Zend_Feed_Writer_Feed, Zend_Feed_Writer_Source given\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/Feed/Atom/Source.php + + - + message: "#^Parameter \\#1 \\$root of method Zend_Feed_Writer_Renderer_RendererAbstract\\:\\:setRootElement\\(\\) expects DOMElement, DOMElement\\|null given\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/Feed/Rss.php + + - + message: "#^Method Zend_Feed_Writer_Renderer_RendererAbstract\\:\\:getElement\\(\\) should return DOMElement but returns DOMElement\\|null\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/RendererAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Renderer_RendererAbstract\\:\\:setType\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/RendererAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Renderer_RendererAbstract\\:\\:setRootElement\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/RendererAbstract.php + + - + message: "#^Method Zend_Feed_Writer_Renderer_RendererInterface\\:\\:setType\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/RendererInterface.php + + - + message: "#^Method Zend_Feed_Writer_Renderer_RendererInterface\\:\\:setRootElement\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Feed/Writer/Renderer/RendererInterface.php + + - + message: "#^Method Zend_Gdata\\:\\:import\\(\\) has parameter \\$useObjectMapping with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata.php + + - + message: "#^Call to an undefined method Zend_Gdata\\:\\:decodeRequest\\(\\)\\.$#" + count: 1 + path: library/Zend/Gdata.php + + - + message: "#^Method Zend_Gdata\\:\\:getEntry\\(\\) has parameter \\$className with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: library/Zend/Gdata.php + + - + message: "#^Call to an undefined method Zend_Http_Client\\:\\:getClientLoginToken\\(\\)\\.$#" + count: 1 + path: library/Zend/Gdata.php + + - + message: "#^Call to an undefined method Zend_Http_Client\\:\\:getAuthSubToken\\(\\)\\.$#" + count: 1 + path: library/Zend/Gdata.php + + - + message: "#^Property Zend_Gdata_Analytics_AccountEntry\\:\\:\\$_accountId has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountEntry.php + + - + message: "#^Property Zend_Gdata_Analytics_AccountEntry\\:\\:\\$_accountName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountEntry.php + + - + message: "#^Property Zend_Gdata_Analytics_AccountEntry\\:\\:\\$_profileId has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountEntry.php + + - + message: "#^Property Zend_Gdata_Analytics_AccountEntry\\:\\:\\$_webPropertyId has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountEntry.php + + - + message: "#^Property Zend_Gdata_Analytics_AccountEntry\\:\\:\\$_currency has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountEntry.php + + - + message: "#^Property Zend_Gdata_Analytics_AccountEntry\\:\\:\\$_timezone has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountEntry.php + + - + message: "#^Property Zend_Gdata_Analytics_AccountEntry\\:\\:\\$_tableId has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountEntry.php + + - + message: "#^Property Zend_Gdata_Analytics_AccountEntry\\:\\:\\$_profileName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountEntry.php + + - + message: "#^Property Zend_Gdata_Analytics_AccountEntry\\:\\:\\$_goal has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountEntry.php + + - + message: "#^Method Zend_Gdata_Analytics_AccountEntry\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountEntry.php + + - + message: "#^Method Zend_Gdata_Analytics_AccountFeed\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountFeed.php + + - + message: "#^Property Zend_Gdata_Analytics_AccountQuery\\:\\:\\$_defaultFeedUri has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountQuery.php + + - + message: "#^Method Zend_Gdata_Analytics_AccountQuery\\:\\:goals\\(\\) has parameter \\$profileId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/AccountQuery.php + + - + message: "#^Method Zend_Gdata_Analytics_DataFeed\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/DataFeed.php + + - + message: "#^Property Zend_Gdata_Analytics_DataQuery\\:\\:\\$_defaultFeedUri has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/DataQuery.php + + - + message: "#^Property Zend_Gdata_Analytics_Extension_Dimension\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/Dimension.php + + - + message: "#^Property Zend_Gdata_Analytics_Extension_Dimension\\:\\:\\$_name has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/Dimension.php + + - + message: "#^Property Zend_Gdata_Analytics_Extension_Metric\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/Metric.php + + - + message: "#^Property Zend_Gdata_Analytics_Extension_Metric\\:\\:\\$_name has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/Metric.php + + - + message: "#^Method Zend_Gdata_Analytics_Extension_Metric\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/Metric.php + + - + message: "#^Property Zend_Gdata_Analytics_Extension_Property\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/Property.php + + - + message: "#^Property Zend_Gdata_Analytics_Extension_Property\\:\\:\\$_name has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/Property.php + + - + message: "#^Method Zend_Gdata_Analytics_Extension_Property\\:\\:__construct\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/Property.php + + - + message: "#^Method Zend_Gdata_Analytics_Extension_Property\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/Property.php + + - + message: "#^Property Zend_Gdata_Analytics_Extension_TableId\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/TableId.php + + - + message: "#^Method Zend_Gdata_Analytics_Extension_TableId\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/TableId.php + + - + message: "#^Method Zend_Gdata_Analytics_Extension_TableId\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/TableId.php + + - + message: "#^Method Zend_Gdata_Analytics_Extension_TableId\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Analytics/Extension/TableId.php + + - + message: "#^Property Zend_Gdata_App\\:\\:\\$_majorProtocolVersion has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Property Zend_Gdata_App\\:\\:\\$_minorProtocolVersion has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#1 \\$client of method Zend_Gdata_App\\:\\:setHttpClient\\(\\) expects Zend_Http_Client, Zend_Http_Client\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#3 \\$extraHeaders of method Zend_Gdata_App\\:\\:importUrl\\(\\) expects array, null given\\.$#" + count: 2 + path: library/Zend/Gdata/App.php + + - + message: "#^Method Zend_Gdata_App\\:\\:setHttpClient\\(\\) has parameter \\$applicationId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Strict comparison using \\=\\=\\= between Zend_Http_Client and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Method Zend_Gdata_App\\:\\:setVerboseExceptionMessages\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Method Zend_Gdata_App\\:\\:setMajorProtocolVersion\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Method Zend_Gdata_App\\:\\:setMinorProtocolVersion\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Strict comparison using \\=\\=\\= between array and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Cannot call method getContentType\\(\\) on string\\|Zend_Gdata_MediaMimeStream\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#1 \\$haystack of function strpos expects string, array\\|string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Binary operation \"\\.\" between array\\|string\\|null and ' \\(gzip\\)' results in an error\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Call to an undefined method Zend_Http_Client\\:\\:setRawDataStream\\(\\)\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#1 \\$data of method Zend_Http_Client\\:\\:setRawData\\(\\) expects resource\\|string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#1 \\$adapter of method Zend_Http_Client\\:\\:setAdapter\\(\\) expects string\\|Zend_Http_Client_Adapter_Interface, Zend_Http_Client_Adapter_Interface\\|null given\\.$#" + count: 2 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#2 \\$url of method Zend_Gdata_App\\:\\:performHttpRequest\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#3 \\$length of function substr expects int, int\\|false given\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#3 \\$majorProtocolVersion of static method Zend_Gdata_App\\:\\:importString\\(\\) expects int\\|null, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#4 \\$minorProtocolVersion of static method Zend_Gdata_App\\:\\:importString\\(\\) expects int\\|null, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#2 \\$newvalue of function ini_set expects string, int given\\.$#" + count: 2 + path: library/Zend/Gdata/App.php + + - + message: "#^Undefined variable\\: \\$php_errormsg$#" + count: 2 + path: library/Zend/Gdata/App.php + + - + message: "#^Default value of the parameter \\#3 \\$useIncludePath \\(false\\) of method Zend_Gdata_App\\:\\:importFile\\(\\) is incompatible with type string\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#2 \\$use_include_path of function file_get_contents expects bool, string given\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#3 \\$headers of method Zend_Gdata_App\\:\\:prepareRequest\\(\\) expects array, array\\|null given\\.$#" + count: 2 + path: library/Zend/Gdata/App.php + + - + message: "#^Method Zend_Gdata_App\\:\\:delete\\(\\) has parameter \\$remainingRedirects with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Method Zend_Gdata_App\\:\\:__call\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#1 \\$argument of class ReflectionClass constructor expects class\\-string\\\\|T of object, string given\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Argument of an invalid type object\\|string supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Call to an undefined method object\\:\\:addEntry\\(\\)\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Cannot call method getLink\\(\\) on object\\|string\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Method Zend_Gdata_App\\:\\:enableRequestDebugLogging\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 2 + path: library/Zend/Gdata/App.php + + - + message: "#^Parameter \\#1 \\$uri of method Zend_Gdata_App\\:\\:getFeed\\(\\) expects string, string\\|null given\\.$#" + count: 2 + path: library/Zend/Gdata/App.php + + - + message: "#^Method Zend_Gdata_App\\:\\:generateIfMatchHeaderData\\(\\) has parameter \\$data with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App.php + + - + message: "#^Method Zend_Gdata_App_Base\\:\\:getText\\(\\) has parameter \\$trim with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Parameter \\#1 \\$str of function trim expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Method Zend_Gdata_App_Base\\:\\:getText\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Method Zend_Gdata_App_Base\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Method Zend_Gdata_App_Base\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Parameter \\#2 \\$qualifiedname of method DOMDocument\\:\\:createElementNS\\(\\) expects string, string\\|null given\\.$#" + count: 2 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Parameter \\#1 \\$haystack of function strpos expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Parameter \\#1 \\$name of method DOMDocument\\:\\:createElement\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Method Zend_Gdata_App_Base\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Method Zend_Gdata_App_Base\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Access to an undefined property DOMNode\\:\\:\\$name\\.$#" + count: 2 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Method Zend_Gdata_App_Base\\:\\:transferFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Method Zend_Gdata_App_Base\\:\\:transferFromXML\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Parameter \\#2 \\$newvalue of function ini_set expects string, int given\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Undefined variable\\: \\$php_errormsg$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:getElementsByTagName\\(\\)\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Strict comparison using \\=\\=\\= between int and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Method Zend_Gdata_App_Base\\:\\:flushNamespaceLookupCache\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Method Zend_Gdata_App_Base\\:\\:__get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func expects callable\\(\\)\\: mixed, array\\(\\$this\\(Zend_Gdata_App_Base\\), string\\) given\\.$#" + count: 2 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Method Zend_Gdata_App_Base\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Base.php + + - + message: "#^Method Zend_Gdata_App_BaseMediaSource\\:\\:setSlug\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/BaseMediaSource.php + + - + message: "#^Method Zend_Gdata_App_BaseMediaSource\\:\\:__get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/BaseMediaSource.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func expects callable\\(\\)\\: mixed, array\\(\\$this\\(Zend_Gdata_App_BaseMediaSource\\), string\\) given\\.$#" + count: 2 + path: library/Zend/Gdata/App/BaseMediaSource.php + + - + message: "#^Method Zend_Gdata_App_BaseMediaSource\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/BaseMediaSource.php + + - + message: "#^Method Zend_Gdata_App_Entry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Entry.php + + - + message: "#^Method Zend_Gdata_App_Entry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Entry.php + + - + message: "#^Method Zend_Gdata_App_Entry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Entry.php + + - + message: "#^Cannot call method updateEntry\\(\\) on Zend_Gdata_App\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/App/Entry.php + + - + message: "#^Cannot call method delete\\(\\) on Zend_Gdata_App\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/App/Entry.php + + - + message: "#^Access to an undefined property Zend_Gdata_App_Entry\\:\\:\\$service\\.$#" + count: 1 + path: library/Zend/Gdata/App/Entry.php + + - + message: "#^Property Zend_Gdata_App_Extension_Category\\:\\:\\$_term has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Category.php + + - + message: "#^Property Zend_Gdata_App_Extension_Category\\:\\:\\$_scheme has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Category.php + + - + message: "#^Property Zend_Gdata_App_Extension_Category\\:\\:\\$_label has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Category.php + + - + message: "#^Method Zend_Gdata_App_Extension_Category\\:\\:__construct\\(\\) has parameter \\$label with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Category.php + + - + message: "#^Method Zend_Gdata_App_Extension_Category\\:\\:__construct\\(\\) has parameter \\$scheme with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Category.php + + - + message: "#^Method Zend_Gdata_App_Extension_Category\\:\\:__construct\\(\\) has parameter \\$term with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Category.php + + - + message: "#^Method Zend_Gdata_App_Extension_Category\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Category.php + + - + message: "#^Method Zend_Gdata_App_Extension_Category\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Category.php + + - + message: "#^Method Zend_Gdata_App_Extension_Category\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Category.php + + - + message: "#^Property Zend_Gdata_App_Extension_Content\\:\\:\\$_src has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Content.php + + - + message: "#^Method Zend_Gdata_App_Extension_Content\\:\\:__construct\\(\\) has parameter \\$src with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Content.php + + - + message: "#^Method Zend_Gdata_App_Extension_Content\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Content.php + + - + message: "#^Method Zend_Gdata_App_Extension_Content\\:\\:__construct\\(\\) has parameter \\$type with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Content.php + + - + message: "#^Method Zend_Gdata_App_Extension_Content\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Content.php + + - + message: "#^Method Zend_Gdata_App_Extension_Content\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Content.php + + - + message: "#^Method Zend_Gdata_App_Extension_Content\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Content.php + + - + message: "#^Property Zend_Gdata_App_Extension_Control\\:\\:\\$_draft has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Control.php + + - + message: "#^Method Zend_Gdata_App_Extension_Control\\:\\:__construct\\(\\) has parameter \\$draft with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Control.php + + - + message: "#^Method Zend_Gdata_App_Extension_Control\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Control.php + + - + message: "#^Method Zend_Gdata_App_Extension_Control\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Control.php + + - + message: "#^Method Zend_Gdata_App_Extension_Control\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Control.php + + - + message: "#^Method Zend_Gdata_App_Extension_Draft\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Draft.php + + - + message: "#^Method Zend_Gdata_App_Extension_Edited\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Edited.php + + - + message: "#^Method Zend_Gdata_App_Extension_Element\\:\\:__construct\\(\\) has parameter \\$rootElement with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Element.php + + - + message: "#^Method Zend_Gdata_App_Extension_Element\\:\\:__construct\\(\\) has parameter \\$rootNamespace with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Element.php + + - + message: "#^Method Zend_Gdata_App_Extension_Element\\:\\:__construct\\(\\) has parameter \\$rootNamespaceURI with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Element.php + + - + message: "#^Method Zend_Gdata_App_Extension_Element\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Element.php + + - + message: "#^Method Zend_Gdata_App_Extension_Element\\:\\:transferFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Element.php + + - + message: "#^Method Zend_Gdata_App_Extension_Email\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Email.php + + - + message: "#^Property Zend_Gdata_App_Extension_Generator\\:\\:\\$_uri has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Generator.php + + - + message: "#^Property Zend_Gdata_App_Extension_Generator\\:\\:\\$_version has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Generator.php + + - + message: "#^Method Zend_Gdata_App_Extension_Generator\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Generator.php + + - + message: "#^Method Zend_Gdata_App_Extension_Generator\\:\\:__construct\\(\\) has parameter \\$uri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Generator.php + + - + message: "#^Method Zend_Gdata_App_Extension_Generator\\:\\:__construct\\(\\) has parameter \\$version with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Generator.php + + - + message: "#^Method Zend_Gdata_App_Extension_Generator\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Generator.php + + - + message: "#^Method Zend_Gdata_App_Extension_Generator\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Generator.php + + - + message: "#^Method Zend_Gdata_App_Extension_Generator\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Generator.php + + - + message: "#^Method Zend_Gdata_App_Extension_Icon\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Icon.php + + - + message: "#^Method Zend_Gdata_App_Extension_Id\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Id.php + + - + message: "#^Property Zend_Gdata_App_Extension_Link\\:\\:\\$_href has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Property Zend_Gdata_App_Extension_Link\\:\\:\\$_rel has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Property Zend_Gdata_App_Extension_Link\\:\\:\\$_type has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Property Zend_Gdata_App_Extension_Link\\:\\:\\$_hrefLang has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Property Zend_Gdata_App_Extension_Link\\:\\:\\$_title has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Property Zend_Gdata_App_Extension_Link\\:\\:\\$_length has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Method Zend_Gdata_App_Extension_Link\\:\\:__construct\\(\\) has parameter \\$href with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Method Zend_Gdata_App_Extension_Link\\:\\:__construct\\(\\) has parameter \\$hrefLang with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Method Zend_Gdata_App_Extension_Link\\:\\:__construct\\(\\) has parameter \\$length with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Method Zend_Gdata_App_Extension_Link\\:\\:__construct\\(\\) has parameter \\$rel with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Method Zend_Gdata_App_Extension_Link\\:\\:__construct\\(\\) has parameter \\$title with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Method Zend_Gdata_App_Extension_Link\\:\\:__construct\\(\\) has parameter \\$type with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Method Zend_Gdata_App_Extension_Link\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Method Zend_Gdata_App_Extension_Link\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Method Zend_Gdata_App_Extension_Link\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Link.php + + - + message: "#^Method Zend_Gdata_App_Extension_Logo\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Logo.php + + - + message: "#^Method Zend_Gdata_App_Extension_Name\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Name.php + + - + message: "#^Property Zend_Gdata_App_Extension_Person\\:\\:\\$_name has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Person.php + + - + message: "#^Property Zend_Gdata_App_Extension_Person\\:\\:\\$_email has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Person.php + + - + message: "#^Property Zend_Gdata_App_Extension_Person\\:\\:\\$_uri has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Person.php + + - + message: "#^Method Zend_Gdata_App_Extension_Person\\:\\:__construct\\(\\) has parameter \\$email with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Person.php + + - + message: "#^Method Zend_Gdata_App_Extension_Person\\:\\:__construct\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Person.php + + - + message: "#^Method Zend_Gdata_App_Extension_Person\\:\\:__construct\\(\\) has parameter \\$uri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Person.php + + - + message: "#^Method Zend_Gdata_App_Extension_Person\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Person.php + + - + message: "#^Method Zend_Gdata_App_Extension_Person\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Person.php + + - + message: "#^Method Zend_Gdata_App_Extension_Person\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Person.php + + - + message: "#^Method Zend_Gdata_App_Extension_Published\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Published.php + + - + message: "#^Method Zend_Gdata_App_Extension_Rights\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Rights.php + + - + message: "#^Property Zend_Gdata_App_Extension_Text\\:\\:\\$_type has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Text.php + + - + message: "#^Method Zend_Gdata_App_Extension_Text\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Text.php + + - + message: "#^Method Zend_Gdata_App_Extension_Text\\:\\:__construct\\(\\) has parameter \\$type with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Text.php + + - + message: "#^Method Zend_Gdata_App_Extension_Text\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Text.php + + - + message: "#^Method Zend_Gdata_App_Extension_Text\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Text.php + + - + message: "#^Method Zend_Gdata_App_Extension_Text\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Text.php + + - + message: "#^Method Zend_Gdata_App_Extension_Text\\:\\:getType\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Text.php + + - + message: "#^Method Zend_Gdata_App_Extension_Text\\:\\:setType\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Text.php + + - + message: "#^Method Zend_Gdata_App_Extension_Text\\:\\:setType\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Text.php + + - + message: "#^Method Zend_Gdata_App_Extension_Updated\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Updated.php + + - + message: "#^Method Zend_Gdata_App_Extension_Uri\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Extension/Uri.php + + - + message: "#^Method Zend_Gdata_App_Feed\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Feed.php + + - + message: "#^Method Zend_Gdata_App_Feed\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Feed.php + + - + message: "#^Method Zend_Gdata_App_Feed\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Feed.php + + - + message: "#^Method Zend_Gdata_App_Feed\\:\\:offsetGet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Feed.php + + - + message: "#^Method Zend_Gdata_App_Feed\\:\\:offsetUnset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Feed.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 2 + path: library/Zend/Gdata/App/Feed.php + + - + message: "#^Parameter \\#1 \\$uri of method Zend_Gdata_App\\:\\:getFeed\\(\\) expects string, string\\|null given\\.$#" + count: 2 + path: library/Zend/Gdata/App/Feed.php + + - + message: "#^Method Zend_Gdata_App_Feed\\:\\:setMajorProtocolVersion\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Feed.php + + - + message: "#^Method Zend_Gdata_App_Feed\\:\\:setMinorProtocolVersion\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Feed.php + + - + message: "#^Property Zend_Gdata_App_FeedEntryParent\\:\\:\\$_service has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Property Zend_Gdata_App_FeedEntryParent\\:\\:\\$_author has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Property Zend_Gdata_App_FeedEntryParent\\:\\:\\$_category has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Property Zend_Gdata_App_FeedEntryParent\\:\\:\\$_contributor has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Property Zend_Gdata_App_FeedEntryParent\\:\\:\\$_id has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Property Zend_Gdata_App_FeedEntryParent\\:\\:\\$_link has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Property Zend_Gdata_App_FeedEntryParent\\:\\:\\$_title has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Property Zend_Gdata_App_FeedEntryParent\\:\\:\\$_updated has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Property Zend_Gdata_App_FeedEntryParent\\:\\:\\$_majorProtocolVersion has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Property Zend_Gdata_App_FeedEntryParent\\:\\:\\$_minorProtocolVersion has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Method Zend_Gdata_App_FeedEntryParent\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Method Zend_Gdata_App_FeedEntryParent\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Method Zend_Gdata_App_FeedEntryParent\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Method Zend_Gdata_App_FeedEntryParent\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Method Zend_Gdata_App_FeedEntryParent\\:\\:setMajorProtocolVersion\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Method Zend_Gdata_App_FeedEntryParent\\:\\:setMinorProtocolVersion\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Parameter \\#2 \\$majorVersion of method Zend_Gdata_App_Base\\:\\:lookupNamespace\\(\\) expects int, int\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedEntryParent.php + + - + message: "#^Property Zend_Gdata_App_FeedSourceParent\\:\\:\\$_generator has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedSourceParent.php + + - + message: "#^Property Zend_Gdata_App_FeedSourceParent\\:\\:\\$_icon has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedSourceParent.php + + - + message: "#^Property Zend_Gdata_App_FeedSourceParent\\:\\:\\$_logo has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedSourceParent.php + + - + message: "#^Property Zend_Gdata_App_FeedSourceParent\\:\\:\\$_subtitle has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedSourceParent.php + + - + message: "#^Access to an undefined property Zend_Gdata_App_FeedSourceParent\\:\\:\\$_entry\\.$#" + count: 2 + path: library/Zend/Gdata/App/FeedSourceParent.php + + - + message: "#^Method Zend_Gdata_App_FeedSourceParent\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedSourceParent.php + + - + message: "#^Method Zend_Gdata_App_FeedSourceParent\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedSourceParent.php + + - + message: "#^Method Zend_Gdata_App_FeedSourceParent\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/FeedSourceParent.php + + - + message: "#^Property Zend_Gdata_App_HttpException\\:\\:\\$_httpClientException has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/HttpException.php + + - + message: "#^Property Zend_Gdata_App_HttpException\\:\\:\\$_response has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/HttpException.php + + - + message: "#^Parameter \\#1 \\$msg of method Zend_Exception\\:\\:__construct\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/App/HttpException.php + + - + message: "#^Method Zend_Gdata_App_HttpException\\:\\:setHttpClientException\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/HttpException.php + + - + message: "#^Method Zend_Gdata_App_HttpException\\:\\:setResponse\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/HttpException.php + + - + message: "#^If condition is always true\\.$#" + count: 1 + path: library/Zend/Gdata/App/HttpException.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Gdata/App/HttpException.php + + - + message: "#^Method Zend_Gdata_App_LoggingHttpClientAdapterSocket\\:\\:log\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/LoggingHttpClientAdapterSocket.php + + - + message: "#^Property Zend_Gdata_App_LoggingHttpClientAdapterSocket\\:\\:\\$log_handle \\(resource\\|null\\) does not accept resource\\|false\\.$#" + count: 1 + path: library/Zend/Gdata/App/LoggingHttpClientAdapterSocket.php + + - + message: "#^Parameter \\#1 \\$fp of function fwrite expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Gdata/App/LoggingHttpClientAdapterSocket.php + + - + message: "#^Method Zend_Gdata_App_LoggingHttpClientAdapterSocket\\:\\:connect\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/LoggingHttpClientAdapterSocket.php + + - + message: "#^Method Zend_Gdata_App_LoggingHttpClientAdapterSocket\\:\\:close\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/LoggingHttpClientAdapterSocket.php + + - + message: "#^Method Zend_Gdata_App_MediaEntry\\:\\:__construct\\(\\) has parameter \\$mediaSource with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/MediaEntry.php + + - + message: "#^Call to an undefined method Zend_Gdata_App_MediaSource\\:\\:getFilename\\(\\)\\.$#" + count: 1 + path: library/Zend/Gdata/App/MediaEntry.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: library/Zend/Gdata/App/MediaEntry.php + + - + message: "#^Parameter \\#1 \\$fp of function fread expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Gdata/App/MediaFileSource.php + + - + message: "#^Parameter \\#2 \\$length of function fread expects int, int\\|false given\\.$#" + count: 1 + path: library/Zend/Gdata/App/MediaFileSource.php + + - + message: "#^Parameter \\#1 \\$fp of function fclose expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Gdata/App/MediaFileSource.php + + - + message: "#^Method Zend_Gdata_App_MediaSource\\:\\:setSlug\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/MediaSource.php + + - + message: "#^Method Zend_Gdata_App_Util\\:\\:formatTimestamp\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Util.php + + - + message: "#^Parameter \\#2 \\$subject of function preg_match expects string, int given\\.$#" + count: 1 + path: library/Zend/Gdata/App/Util.php + + - + message: "#^Parameter \\#1 \\$time of function strtotime expects string, int given\\.$#" + count: 1 + path: library/Zend/Gdata/App/Util.php + + - + message: "#^Method Zend_Gdata_App_Util\\:\\:findGreatestBoundedValue\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/App/Util.php + + - + message: "#^Parameter \\#1 \\$key of function array_key_exists expects int\\|string, int\\<0, max\\>\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/App/Util.php + + - + message: "#^Method Zend_Gdata_AuthSub\\:\\:getAuthSubTokenUri\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/AuthSub.php + + - + message: "#^Parameter \\#1 \\$str of function urlencode expects string, int given\\.$#" + count: 2 + path: library/Zend/Gdata/AuthSub.php + + - + message: "#^Parameter \\#2 \\$client of static method Zend_Gdata_AuthSub\\:\\:getHttpClient\\(\\) expects Zend_Gdata_HttpClient\\|null, Zend_Http_Client\\|null given\\.$#" + count: 3 + path: library/Zend/Gdata/AuthSub.php + + - + message: "#^Method Zend_Gdata_AuthSub\\:\\:getAuthSubTokenInfo\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/AuthSub.php + + - + message: "#^Method Zend_Gdata_AuthSub\\:\\:getHttpClient\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/AuthSub.php + + - + message: "#^Method Zend_Gdata_Books\\:\\:insertVolume\\(\\) should return Zend_Gdata_Books_VolumeEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Books.php + + - + message: "#^Parameter \\#2 \\$uri of method Zend_Gdata_App\\:\\:insertEntry\\(\\) expects string, string\\|Zend_Gdata_Query given\\.$#" + count: 1 + path: library/Zend/Gdata/Books.php + + - + message: "#^Property Zend_Gdata_Books_Extension_Embeddability\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Embeddability.php + + - + message: "#^Method Zend_Gdata_Books_Extension_Embeddability\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Embeddability.php + + - + message: "#^Method Zend_Gdata_Books_Extension_Embeddability\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Embeddability.php + + - + message: "#^Method Zend_Gdata_Books_Extension_Embeddability\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Embeddability.php + + - + message: "#^Property Zend_Gdata_Books_Extension_Review\\:\\:\\$_lang has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Review.php + + - + message: "#^Property Zend_Gdata_Books_Extension_Review\\:\\:\\$_type has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Review.php + + - + message: "#^Method Zend_Gdata_Books_Extension_Review\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Review.php + + - + message: "#^Method Zend_Gdata_Books_Extension_Review\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Review.php + + - + message: "#^Method Zend_Gdata_Books_Extension_Review\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Review.php + + - + message: "#^Property Zend_Gdata_Books_Extension_Viewability\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Viewability.php + + - + message: "#^Method Zend_Gdata_Books_Extension_Viewability\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Viewability.php + + - + message: "#^Method Zend_Gdata_Books_Extension_Viewability\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Viewability.php + + - + message: "#^Method Zend_Gdata_Books_Extension_Viewability\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/Extension/Viewability.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_comments has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_creators has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_dates has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_descriptions has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_embeddability has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_formats has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_identifiers has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_languages has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_publishers has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_rating has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_review has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_subjects has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_titles has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Property Zend_Gdata_Books_VolumeEntry\\:\\:\\$_viewability has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Method Zend_Gdata_Books_VolumeEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Method Zend_Gdata_Books_VolumeEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Method Zend_Gdata_Books_VolumeEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Books/VolumeEntry.php + + - + message: "#^Method Zend_Gdata_Calendar\\:\\:getCalendarEventEntry\\(\\) has parameter \\$location with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar.php + + - + message: "#^Method Zend_Gdata_Calendar\\:\\:getCalendarListEntry\\(\\) has parameter \\$location with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar.php + + - + message: "#^Method Zend_Gdata_Calendar\\:\\:insertEvent\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar.php + + - + message: "#^Method Zend_Gdata_Calendar\\:\\:insertEvent\\(\\) has parameter \\$event with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar.php + + - + message: "#^Method Zend_Gdata_Calendar\\:\\:insertEvent\\(\\) has parameter \\$uri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar.php + + - + message: "#^Property Zend_Gdata_Calendar_EventEntry\\:\\:\\$_sendEventNotifications has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventEntry.php + + - + message: "#^Property Zend_Gdata_Calendar_EventEntry\\:\\:\\$_timezone has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventEntry.php + + - + message: "#^Property Zend_Gdata_Calendar_EventEntry\\:\\:\\$_quickadd has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_EventEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_EventEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_EventEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_EventEntry\\:\\:getSendEventNotifications\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_EventEntry\\:\\:setSendEventNotifications\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_EventEntry\\:\\:setSendEventNotifications\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_EventEntry\\:\\:getTimezone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_EventEntry\\:\\:getQuickAdd\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventEntry.php + + - + message: "#^Property Zend_Gdata_Calendar_EventFeed\\:\\:\\$_timezone has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventFeed.php + + - + message: "#^Method Zend_Gdata_Calendar_EventFeed\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventFeed.php + + - + message: "#^Method Zend_Gdata_Calendar_EventFeed\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventFeed.php + + - + message: "#^Method Zend_Gdata_Calendar_EventFeed\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventFeed.php + + - + message: "#^Method Zend_Gdata_Calendar_EventFeed\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventFeed.php + + - + message: "#^Method Zend_Gdata_Calendar_EventFeed\\:\\:getTimezone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventFeed.php + + - + message: "#^Method Zend_Gdata_Calendar_EventFeed\\:\\:setTimezone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventFeed.php + + - + message: "#^Method Zend_Gdata_Calendar_EventFeed\\:\\:setTimezone\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventFeed.php + + - + message: "#^Property Zend_Gdata_Calendar_EventQuery\\:\\:\\$_defaultFeedUri has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventQuery.php + + - + message: "#^Property Zend_Gdata_Calendar_EventQuery\\:\\:\\$_comments has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventQuery.php + + - + message: "#^Property Zend_Gdata_Calendar_EventQuery\\:\\:\\$_user has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventQuery.php + + - + message: "#^Property Zend_Gdata_Calendar_EventQuery\\:\\:\\$_visibility has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventQuery.php + + - + message: "#^Property Zend_Gdata_Calendar_EventQuery\\:\\:\\$_projection has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventQuery.php + + - + message: "#^Property Zend_Gdata_Calendar_EventQuery\\:\\:\\$_event has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventQuery.php + + - + message: "#^Method Zend_Gdata_Calendar_EventQuery\\:\\:setSortOrder\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventQuery.php + + - + message: "#^Method Zend_Gdata_Calendar_EventQuery\\:\\:setRecurrenceExpansionStart\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventQuery.php + + - + message: "#^Method Zend_Gdata_Calendar_EventQuery\\:\\:setRecurrenceExpansionEnd\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/EventQuery.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 4 + path: library/Zend/Gdata/Calendar/EventQuery.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 2 + path: library/Zend/Gdata/Calendar/EventQuery.php + + - + message: "#^Property Zend_Gdata_Calendar_Extension_AccessLevel\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/AccessLevel.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_AccessLevel\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/AccessLevel.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_AccessLevel\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/AccessLevel.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_AccessLevel\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/AccessLevel.php + + - + message: "#^Property Zend_Gdata_Calendar_Extension_Color\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Color.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Color\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Color.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Color\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Color.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Color\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Color.php + + - + message: "#^Property Zend_Gdata_Calendar_Extension_Hidden\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Hidden.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Hidden\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Hidden.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Hidden\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Hidden.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Hidden\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Hidden.php + + - + message: "#^Property Zend_Gdata_Calendar_Extension_Link\\:\\:\\$_webContent has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Link.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Link\\:\\:__construct\\(\\) has parameter \\$href with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Link.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Link\\:\\:__construct\\(\\) has parameter \\$hrefLang with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Link.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Link\\:\\:__construct\\(\\) has parameter \\$length with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Link.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Link\\:\\:__construct\\(\\) has parameter \\$rel with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Link.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Link\\:\\:__construct\\(\\) has parameter \\$title with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Link.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Link\\:\\:__construct\\(\\) has parameter \\$type with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Link.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Link\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Link.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Link\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Link.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Link\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Link.php + + - + message: "#^Property Zend_Gdata_Calendar_Extension_QuickAdd\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/QuickAdd.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_QuickAdd\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/QuickAdd.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_QuickAdd\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/QuickAdd.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_QuickAdd\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/QuickAdd.php + + - + message: "#^Property Zend_Gdata_Calendar_Extension_Selected\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Selected.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Selected\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Selected.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Selected\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Selected.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Selected\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Selected.php + + - + message: "#^Property Zend_Gdata_Calendar_Extension_SendEventNotifications\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/SendEventNotifications.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_SendEventNotifications\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/SendEventNotifications.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_SendEventNotifications\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/SendEventNotifications.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_SendEventNotifications\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/SendEventNotifications.php + + - + message: "#^Property Zend_Gdata_Calendar_Extension_Timezone\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Timezone.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Timezone\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Timezone.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Timezone\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Timezone.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_Timezone\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/Timezone.php + + - + message: "#^Property Zend_Gdata_Calendar_Extension_WebContent\\:\\:\\$_url has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/WebContent.php + + - + message: "#^Property Zend_Gdata_Calendar_Extension_WebContent\\:\\:\\$_height has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/WebContent.php + + - + message: "#^Property Zend_Gdata_Calendar_Extension_WebContent\\:\\:\\$_width has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/WebContent.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_WebContent\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/WebContent.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_WebContent\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/WebContent.php + + - + message: "#^Access to an undefined property Zend_Gdata_Calendar_Extension_WebContent\\:\\:\\$url\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/WebContent.php + + - + message: "#^Access to an undefined property Zend_Gdata_Calendar_Extension_WebContent\\:\\:\\$height\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/WebContent.php + + - + message: "#^Access to an undefined property Zend_Gdata_Calendar_Extension_WebContent\\:\\:\\$width\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/WebContent.php + + - + message: "#^Method Zend_Gdata_Calendar_Extension_WebContent\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/Extension/WebContent.php + + - + message: "#^Property Zend_Gdata_Calendar_ListEntry\\:\\:\\$_color has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Property Zend_Gdata_Calendar_ListEntry\\:\\:\\$_accessLevel has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Property Zend_Gdata_Calendar_ListEntry\\:\\:\\$_hidden has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Property Zend_Gdata_Calendar_ListEntry\\:\\:\\$_selected has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Property Zend_Gdata_Calendar_ListEntry\\:\\:\\$_timezone has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Property Zend_Gdata_Calendar_ListEntry\\:\\:\\$_where has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_ListEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_ListEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_ListEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_ListEntry\\:\\:getAccessLevel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_ListEntry\\:\\:getColor\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_ListEntry\\:\\:getHidden\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_ListEntry\\:\\:getSelected\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_ListEntry\\:\\:getTimezone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Method Zend_Gdata_Calendar_ListEntry\\:\\:getWhere\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListEntry.php + + - + message: "#^Property Zend_Gdata_Calendar_ListFeed\\:\\:\\$_timezone has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListFeed.php + + - + message: "#^Method Zend_Gdata_Calendar_ListFeed\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListFeed.php + + - + message: "#^Method Zend_Gdata_Calendar_ListFeed\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListFeed.php + + - + message: "#^Method Zend_Gdata_Calendar_ListFeed\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListFeed.php + + - + message: "#^Method Zend_Gdata_Calendar_ListFeed\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListFeed.php + + - + message: "#^Method Zend_Gdata_Calendar_ListFeed\\:\\:getTimezone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Calendar/ListFeed.php + + - + message: "#^Method Zend_Gdata_ClientLogin\\:\\:getHttpClient\\(\\) has parameter \\$loginUri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/ClientLogin.php + + - + message: "#^Method Zend_Gdata_ClientLogin\\:\\:getHttpClient\\(\\) should return Zend_Gdata_HttpClient but return statement is missing\\.$#" + count: 1 + path: library/Zend/Gdata/ClientLogin.php + + - + message: "#^Parameter \\#1 \\$fileExtension of static method Zend_Gdata_Docs\\:\\:lookupMimeType\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Gdata/Docs.php + + - + message: "#^Method Zend_Gdata_Docs\\:\\:insertDocument\\(\\) should return Zend_Gdata_Docs_DocumentListEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Docs.php + + - + message: "#^Method Zend_Gdata_Docs_Query\\:\\:setVisibility\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Docs/Query.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: library/Zend/Gdata/Docs/Query.php + + - + message: "#^Method Zend_Gdata_Entry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Entry.php + + - + message: "#^Method Zend_Gdata_Entry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Entry.php + + - + message: "#^Method Zend_Gdata_Entry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Entry.php + + - + message: "#^Method Zend_Gdata_Entry\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Entry.php + + - + message: "#^Method Zend_Gdata_Exif_Entry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Entry.php + + - + message: "#^Method Zend_Gdata_Exif_Entry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Entry.php + + - + message: "#^Method Zend_Gdata_Exif_Entry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Entry.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Distance.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Exposure.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/FStop.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Flash.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/FocalLength.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/ImageUniqueId.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Iso.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Make.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Model.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Exif_Extension_Tags\\:\\:setDistance\\(\\) expects Zend_Gdata_Exif_Extension_Distance, Zend_Gdata_Exif_Extension_Distance\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Exif_Extension_Tags\\:\\:setExposure\\(\\) expects Zend_Gdata_Exif_Extension_Exposure, Zend_Gdata_Exif_Extension_Exposure\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Exif_Extension_Tags\\:\\:setFlash\\(\\) expects Zend_Gdata_Exif_Extension_Flash, Zend_Gdata_Exif_Extension_Flash\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Exif_Extension_Tags\\:\\:setFocalLength\\(\\) expects Zend_Gdata_Exif_Extension_FocalLength, Zend_Gdata_Exif_Extension_FocalLength\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Exif_Extension_Tags\\:\\:setFStop\\(\\) expects Zend_Gdata_Exif_Extension_FStop, Zend_Gdata_Exif_Extension_FStop\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Exif_Extension_Tags\\:\\:setImageUniqueId\\(\\) expects Zend_Gdata_Exif_Extension_ImageUniqueId, Zend_Gdata_Exif_Extension_ImageUniqueId\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Exif_Extension_Tags\\:\\:setIso\\(\\) expects Zend_Gdata_Exif_Extension_Iso, Zend_Gdata_Exif_Extension_Iso\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Exif_Extension_Tags\\:\\:setMake\\(\\) expects Zend_Gdata_Exif_Extension_Make, Zend_Gdata_Exif_Extension_Make\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Exif_Extension_Tags\\:\\:setModel\\(\\) expects Zend_Gdata_Exif_Extension_Model, Zend_Gdata_Exif_Extension_Model\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Exif_Extension_Tags\\:\\:setTime\\(\\) expects Zend_Gdata_Exif_Extension_Time, Zend_Gdata_Exif_Extension_Time\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Method Zend_Gdata_Exif_Extension_Tags\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Method Zend_Gdata_Exif_Extension_Tags\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Method Zend_Gdata_Exif_Extension_Tags\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Tags.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Exif/Extension/Time.php + + - + message: "#^Property Zend_Gdata_Extension_AttendeeStatus\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/AttendeeStatus.php + + - + message: "#^Method Zend_Gdata_Extension_AttendeeStatus\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/AttendeeStatus.php + + - + message: "#^Method Zend_Gdata_Extension_AttendeeStatus\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/AttendeeStatus.php + + - + message: "#^Method Zend_Gdata_Extension_AttendeeStatus\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/AttendeeStatus.php + + - + message: "#^Property Zend_Gdata_Extension_AttendeeType\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/AttendeeType.php + + - + message: "#^Method Zend_Gdata_Extension_AttendeeType\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/AttendeeType.php + + - + message: "#^Method Zend_Gdata_Extension_AttendeeType\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/AttendeeType.php + + - + message: "#^Method Zend_Gdata_Extension_AttendeeType\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/AttendeeType.php + + - + message: "#^Property Zend_Gdata_Extension_Comments\\:\\:\\$_rel has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Property Zend_Gdata_Extension_Comments\\:\\:\\$_feedLink has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Method Zend_Gdata_Extension_Comments\\:\\:__construct\\(\\) has parameter \\$feedLink with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Method Zend_Gdata_Extension_Comments\\:\\:__construct\\(\\) has parameter \\$rel with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Method Zend_Gdata_Extension_Comments\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Method Zend_Gdata_Extension_Comments\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Method Zend_Gdata_Extension_Comments\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Method Zend_Gdata_Extension_Comments\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Method Zend_Gdata_Extension_Comments\\:\\:getRel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Method Zend_Gdata_Extension_Comments\\:\\:setRel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Method Zend_Gdata_Extension_Comments\\:\\:setRel\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Method Zend_Gdata_Extension_Comments\\:\\:getFeedLink\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Method Zend_Gdata_Extension_Comments\\:\\:setFeedLink\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Method Zend_Gdata_Extension_Comments\\:\\:setFeedLink\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Comments.php + + - + message: "#^Property Zend_Gdata_Extension_EntryLink\\:\\:\\$_href has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Property Zend_Gdata_Extension_EntryLink\\:\\:\\$_readOnly has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Property Zend_Gdata_Extension_EntryLink\\:\\:\\$_rel has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Property Zend_Gdata_Extension_EntryLink\\:\\:\\$_entry has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:__construct\\(\\) has parameter \\$entry with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:__construct\\(\\) has parameter \\$href with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:__construct\\(\\) has parameter \\$readOnly with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:__construct\\(\\) has parameter \\$rel with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:setHref\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:setHref\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:getReadOnly\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:setReadOnly\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:setReadOnly\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:getRel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:setRel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:setRel\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:getEntry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:setEntry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Method Zend_Gdata_Extension_EntryLink\\:\\:setEntry\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EntryLink.php + + - + message: "#^Property Zend_Gdata_Extension_EventStatus\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EventStatus.php + + - + message: "#^Method Zend_Gdata_Extension_EventStatus\\:\\:__construct\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EventStatus.php + + - + message: "#^Method Zend_Gdata_Extension_EventStatus\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EventStatus.php + + - + message: "#^Method Zend_Gdata_Extension_EventStatus\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EventStatus.php + + - + message: "#^Method Zend_Gdata_Extension_EventStatus\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/EventStatus.php + + - + message: "#^Property Zend_Gdata_Extension_ExtendedProperty\\:\\:\\$_name has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Property Zend_Gdata_Extension_ExtendedProperty\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Method Zend_Gdata_Extension_ExtendedProperty\\:\\:__construct\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Method Zend_Gdata_Extension_ExtendedProperty\\:\\:__construct\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Method Zend_Gdata_Extension_ExtendedProperty\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Method Zend_Gdata_Extension_ExtendedProperty\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Method Zend_Gdata_Extension_ExtendedProperty\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Method Zend_Gdata_Extension_ExtendedProperty\\:\\:getName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Method Zend_Gdata_Extension_ExtendedProperty\\:\\:setName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Method Zend_Gdata_Extension_ExtendedProperty\\:\\:setName\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Method Zend_Gdata_Extension_ExtendedProperty\\:\\:getValue\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Method Zend_Gdata_Extension_ExtendedProperty\\:\\:setValue\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Method Zend_Gdata_Extension_ExtendedProperty\\:\\:setValue\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/ExtendedProperty.php + + - + message: "#^Property Zend_Gdata_Extension_FeedLink\\:\\:\\$_countHint has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Property Zend_Gdata_Extension_FeedLink\\:\\:\\$_href has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Property Zend_Gdata_Extension_FeedLink\\:\\:\\$_readOnly has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Property Zend_Gdata_Extension_FeedLink\\:\\:\\$_rel has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Property Zend_Gdata_Extension_FeedLink\\:\\:\\$_feed has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:__construct\\(\\) has parameter \\$countHint with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:__construct\\(\\) has parameter \\$feed with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:__construct\\(\\) has parameter \\$href with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:__construct\\(\\) has parameter \\$readOnly with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:__construct\\(\\) has parameter \\$rel with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:setHref\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:setHref\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:getReadOnly\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:setReadOnly\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:setReadOnly\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:getRel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:setRel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:setRel\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:getFeed\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:setFeed\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_FeedLink\\:\\:setFeed\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/FeedLink.php + + - + message: "#^Method Zend_Gdata_Extension_OpenSearchItemsPerPage\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OpenSearchItemsPerPage.php + + - + message: "#^Method Zend_Gdata_Extension_OpenSearchStartIndex\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OpenSearchStartIndex.php + + - + message: "#^Method Zend_Gdata_Extension_OpenSearchTotalResults\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OpenSearchTotalResults.php + + - + message: "#^Property Zend_Gdata_Extension_OriginalEvent\\:\\:\\$_id has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Property Zend_Gdata_Extension_OriginalEvent\\:\\:\\$_href has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Property Zend_Gdata_Extension_OriginalEvent\\:\\:\\$_when has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:__construct\\(\\) has parameter \\$href with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:__construct\\(\\) has parameter \\$id with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:__construct\\(\\) has parameter \\$when with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:getId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:setId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:setId\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:getHref\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:setHref\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:setHref\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:getWhen\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:setWhen\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Method Zend_Gdata_Extension_OriginalEvent\\:\\:setWhen\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/OriginalEvent.php + + - + message: "#^Property Zend_Gdata_Extension_Rating\\:\\:\\$_min has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Rating.php + + - + message: "#^Property Zend_Gdata_Extension_Rating\\:\\:\\$_max has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Rating.php + + - + message: "#^Property Zend_Gdata_Extension_Rating\\:\\:\\$_numRaters has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Rating.php + + - + message: "#^Property Zend_Gdata_Extension_Rating\\:\\:\\$_average has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Rating.php + + - + message: "#^Property Zend_Gdata_Extension_Rating\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Rating.php + + - + message: "#^Method Zend_Gdata_Extension_Rating\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Rating.php + + - + message: "#^Method Zend_Gdata_Extension_Rating\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Rating.php + + - + message: "#^Method Zend_Gdata_Extension_Rating\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Rating.php + + - + message: "#^Method Zend_Gdata_Extension_Recurrence\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Recurrence.php + + - + message: "#^Property Zend_Gdata_Extension_RecurrenceException\\:\\:\\$_specialized has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/RecurrenceException.php + + - + message: "#^Property Zend_Gdata_Extension_RecurrenceException\\:\\:\\$_entryLink has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/RecurrenceException.php + + - + message: "#^Property Zend_Gdata_Extension_RecurrenceException\\:\\:\\$_originalEvent has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/RecurrenceException.php + + - + message: "#^Method Zend_Gdata_Extension_RecurrenceException\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/RecurrenceException.php + + - + message: "#^Method Zend_Gdata_Extension_RecurrenceException\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/RecurrenceException.php + + - + message: "#^Method Zend_Gdata_Extension_RecurrenceException\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/RecurrenceException.php + + - + message: "#^Method Zend_Gdata_Extension_RecurrenceException\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/RecurrenceException.php + + - + message: "#^Property Zend_Gdata_Extension_Reminder\\:\\:\\$_absoluteTime has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Property Zend_Gdata_Extension_Reminder\\:\\:\\$_method has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Property Zend_Gdata_Extension_Reminder\\:\\:\\$_days has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Property Zend_Gdata_Extension_Reminder\\:\\:\\$_hours has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Property Zend_Gdata_Extension_Reminder\\:\\:\\$_minutes has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:__construct\\(\\) has parameter \\$absoluteTime with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:__construct\\(\\) has parameter \\$days with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:__construct\\(\\) has parameter \\$hours with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:__construct\\(\\) has parameter \\$method with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:__construct\\(\\) has parameter \\$minutes with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:getAbsoluteTime\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:setAbsoluteTime\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:setAbsoluteTime\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:getDays\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:setDays\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:setDays\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:getHours\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:setHours\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:setHours\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:getMinutes\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:setMinutes\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:setMinutes\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:getMethod\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:setMethod\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Method Zend_Gdata_Extension_Reminder\\:\\:setMethod\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Reminder.php + + - + message: "#^Property Zend_Gdata_Extension_Transparency\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Transparency.php + + - + message: "#^Method Zend_Gdata_Extension_Transparency\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Transparency.php + + - + message: "#^Method Zend_Gdata_Extension_Transparency\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Transparency.php + + - + message: "#^Method Zend_Gdata_Extension_Transparency\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Transparency.php + + - + message: "#^Method Zend_Gdata_Extension_Transparency\\:\\:__toString\\(\\) should return string but returns bool\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Transparency.php + + - + message: "#^Property Zend_Gdata_Extension_Visibility\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Visibility.php + + - + message: "#^Method Zend_Gdata_Extension_Visibility\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Visibility.php + + - + message: "#^Method Zend_Gdata_Extension_Visibility\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Visibility.php + + - + message: "#^Method Zend_Gdata_Extension_Visibility\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Visibility.php + + - + message: "#^Method Zend_Gdata_Extension_Visibility\\:\\:__toString\\(\\) should return string but returns bool\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Visibility.php + + - + message: "#^Property Zend_Gdata_Extension_When\\:\\:\\$_reminders has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Property Zend_Gdata_Extension_When\\:\\:\\$_startTime has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Property Zend_Gdata_Extension_When\\:\\:\\$_valueString has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Property Zend_Gdata_Extension_When\\:\\:\\$_endTime has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:__construct\\(\\) has parameter \\$endTime with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:__construct\\(\\) has parameter \\$reminders with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:__construct\\(\\) has parameter \\$startTime with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:__construct\\(\\) has parameter \\$valueString with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:getStartTime\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:setStartTime\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:setStartTime\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:getEndTime\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:setEndTime\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:setEndTime\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:getValueString\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:setValueString\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:setValueString\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:getReminders\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:setReminders\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Method Zend_Gdata_Extension_When\\:\\:setReminders\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/When.php + + - + message: "#^Property Zend_Gdata_Extension_Where\\:\\:\\$_label has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Property Zend_Gdata_Extension_Where\\:\\:\\$_rel has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Property Zend_Gdata_Extension_Where\\:\\:\\$_valueString has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Property Zend_Gdata_Extension_Where\\:\\:\\$_entryLink has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:__construct\\(\\) has parameter \\$entryLink with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:__construct\\(\\) has parameter \\$label with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:__construct\\(\\) has parameter \\$rel with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:__construct\\(\\) has parameter \\$valueString with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Access to an undefined property Zend_Gdata_Extension_Where\\:\\:\\$entryLink\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:getLabel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:setLabel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:setLabel\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:getRel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:setRel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:setRel\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:getValueString\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:setValueString\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:setValueString\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:getEntryLink\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:setEntryLink\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Method Zend_Gdata_Extension_Where\\:\\:setEntryLink\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Where.php + + - + message: "#^Property Zend_Gdata_Extension_Who\\:\\:\\$_email has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Who.php + + - + message: "#^Property Zend_Gdata_Extension_Who\\:\\:\\$_rel has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Who.php + + - + message: "#^Property Zend_Gdata_Extension_Who\\:\\:\\$_valueString has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Who.php + + - + message: "#^Property Zend_Gdata_Extension_Who\\:\\:\\$_attendeeStatus has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Who.php + + - + message: "#^Property Zend_Gdata_Extension_Who\\:\\:\\$_attendeeType has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Who.php + + - + message: "#^Property Zend_Gdata_Extension_Who\\:\\:\\$_entryLink has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Who.php + + - + message: "#^Method Zend_Gdata_Extension_Who\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Who.php + + - + message: "#^Method Zend_Gdata_Extension_Who\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Who.php + + - + message: "#^Method Zend_Gdata_Extension_Who\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Who.php + + - + message: "#^Method Zend_Gdata_Extension_Who\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Extension/Who.php + + - + message: "#^Method Zend_Gdata_Feed\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Feed.php + + - + message: "#^Method Zend_Gdata_Feed\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Feed.php + + - + message: "#^Method Zend_Gdata_Feed\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Feed.php + + - + message: "#^Method Zend_Gdata_Feed\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Feed.php + + - + message: "#^Method Zend_Gdata_Feed\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Feed.php + + - + message: "#^Property Zend_Gdata_Gapps\\:\\:\\$_domain \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:throwServiceExceptionIfDetected\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^PHPDoc tag @throws with type mixed is not subtype of Throwable$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Call to an undefined method Zend_Gdata_App_Exception\\:\\:getResponse\\(\\)\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:import\\(\\) has parameter \\$useObjectMapping with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:import\\(\\) should return string\\|Zend_Gdata_App_Feed but return statement is missing\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:get\\(\\) should return Zend_Http_Response but return statement is missing\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:post\\(\\) should return Zend_Http_Response but return statement is missing\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#3 \\$remainingRedirects of method Zend_Gdata_App\\:\\:post\\(\\) expects array\\|null, int\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:put\\(\\) should return Zend_Http_Response but return statement is missing\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#3 \\$remainingRedirects of method Zend_Gdata_App\\:\\:put\\(\\) expects array\\|null, int\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:delete\\(\\) should return Zend_Http_Response but return statement is missing\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:setDomain\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:getBaseUrl\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:insertUser\\(\\) should return Zend_Gdata_Gapps_UserEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:insertNickname\\(\\) should return Zend_Gdata_Gapps_NicknameEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:insertGroup\\(\\) should return Zend_Gdata_Gapps_GroupEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:insertMember\\(\\) should return Zend_Gdata_Gapps_MemberEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:insertOwner\\(\\) should return Zend_Gdata_Gapps_OwnerEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:insertEmailList\\(\\) should return Zend_Gdata_Gapps_EmailListEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:insertEmailListRecipient\\(\\) should return Zend_Gdata_Gapps_EmailListRecipientEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:__call\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$argument of class ReflectionClass constructor expects class\\-string\\\\|T of object, string given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$args of method ReflectionClass\\\\:\\:newInstanceArgs\\(\\) expects array\\, array\\ given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:createUser\\(\\) has parameter \\$passwordHashFunction with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_UserEntry\\:\\:\\$login\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_Extension_Login\\:\\:\\$username\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_Extension_Login\\:\\:\\$password\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_Extension_Login\\:\\:\\$hashFunctionName\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_UserEntry\\:\\:\\$name\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_Extension_Name\\:\\:\\$givenName\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_Extension_Name\\:\\:\\$familyName\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_UserEntry\\:\\:\\$quota\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_Extension_Quota\\:\\:\\$limit\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_UserQuery\\:\\:setStartUsername\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$feed of method Zend_Gdata_App\\:\\:retrieveAllEntriesForFeed\\(\\) expects object, string\\|Zend_Gdata_Gapps_UserFeed given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:updateUser\\(\\) should return Zend_Gdata_Gapps_UserEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Cannot call method save\\(\\) on string\\|Zend_Gdata_Gapps_UserEntry\\|null\\.$#" + count: 2 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:suspendUser\\(\\) should return Zend_Gdata_Gapps_UserEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:restoreUser\\(\\) should return Zend_Gdata_Gapps_UserEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:deleteUser\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_NicknameEntry\\:\\:\\$nickname\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_NicknameEntry\\:\\:\\$login\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$feed of method Zend_Gdata_App\\:\\:retrieveAllEntriesForFeed\\(\\) expects object, string\\|Zend_Gdata_Gapps_NicknameFeed given\\.$#" + count: 2 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_NicknameQuery\\:\\:setStartNickname\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:deleteNickname\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_Extension_Property\\:\\:\\$name\\.$#" + count: 10 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_Extension_Property\\:\\:\\$value\\.$#" + count: 10 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_GroupEntry\\:\\:\\$property\\.$#" + count: 2 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$feed of method Zend_Gdata_App\\:\\:retrieveAllEntriesForFeed\\(\\) expects object, string\\|Zend_Gdata_Gapps_GroupFeed given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:deleteGroup\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_MemberEntry\\:\\:\\$property\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:removeMemberFromGroup\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$feed of method Zend_Gdata_App\\:\\:retrieveAllEntriesForFeed\\(\\) expects object, string\\|Zend_Gdata_Gapps_MemberFeed given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_OwnerEntry\\:\\:\\$property\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:removeOwnerFromGroup\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:updateGroup\\(\\) should return Zend_Gdata_Gapps_GroupEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_GroupQuery\\:\\:setStartGroupId\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_MemberQuery\\:\\:setStartMemberId\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_Extension_EmailList\\:\\:\\$name\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_EmailListEntry\\:\\:\\$emailList\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_EmailListQuery\\:\\:\\$recipient\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_EmailListQuery\\:\\:setStartEmailListName\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$feed of method Zend_Gdata_App\\:\\:retrieveAllEntriesForFeed\\(\\) expects object, string\\|Zend_Gdata_Gapps_EmailListFeed given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:deleteEmailList\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Extension_Who\\:\\:\\$email\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Access to an undefined property Zend_Gdata_Gapps_EmailListRecipientEntry\\:\\:\\$who\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_EmailListRecipientQuery\\:\\:setStartRecipient\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Parameter \\#1 \\$feed of method Zend_Gdata_App\\:\\:retrieveAllEntriesForFeed\\(\\) expects object, string\\|Zend_Gdata_Gapps_EmailListRecipientFeed given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps\\:\\:removeRecipientFromEmailList\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps.php + + - + message: "#^Method Zend_Gdata_Gapps_EmailListEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_EmailListEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListEntry.php + + - + message: "#^Argument of an invalid type array\\|Zend_Gdata_Extension_FeedLink supplied for foreach, only iterables are supported\\.$#" + count: 2 + path: library/Zend/Gdata/Gapps/EmailListEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_EmailListEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListEntry.php + + - + message: "#^Cannot assign new offset to array\\|Zend_Gdata_Extension_FeedLink\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListEntry.php + + - + message: "#^Property Zend_Gdata_Gapps_EmailListFeed\\:\\:\\$_feedClassName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListFeed.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_EmailListQuery\\:\\:setEmailListName\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListQuery.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_EmailListQuery\\:\\:setRecipient\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListQuery.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_EmailListQuery\\:\\:setStartEmailListName\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_EmailListQuery\\:\\:setEmailListName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_EmailListQuery\\:\\:setRecipient\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListQuery.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 2 + path: library/Zend/Gdata/Gapps/EmailListQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_EmailListQuery\\:\\:setStartEmailListName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_EmailListRecipientEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListRecipientEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_EmailListRecipientEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListRecipientEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_EmailListRecipientEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListRecipientEntry.php + + - + message: "#^Property Zend_Gdata_Gapps_EmailListRecipientFeed\\:\\:\\$_feedClassName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListRecipientFeed.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_EmailListRecipientQuery\\:\\:setEmailListName\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListRecipientQuery.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_EmailListRecipientQuery\\:\\:setStartRecipient\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListRecipientQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_EmailListRecipientQuery\\:\\:setEmailListName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListRecipientQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_EmailListRecipientQuery\\:\\:getEmailListName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListRecipientQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_EmailListRecipientQuery\\:\\:setStartRecipient\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListRecipientQuery.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/EmailListRecipientQuery.php + + - + message: "#^Property Zend_Gdata_Gapps_Error\\:\\:\\$_errorCode has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Property Zend_Gdata_Gapps_Error\\:\\:\\$_reason has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Property Zend_Gdata_Gapps_Error\\:\\:\\$_invalidInput has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Method Zend_Gdata_Gapps_Error\\:\\:__construct\\(\\) has parameter \\$errorCode with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Method Zend_Gdata_Gapps_Error\\:\\:__construct\\(\\) has parameter \\$invalidInput with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Method Zend_Gdata_Gapps_Error\\:\\:__construct\\(\\) has parameter \\$reason with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Method Zend_Gdata_App_Base\\:\\:__construct\\(\\) invoked with 1 parameter, 0 required\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Method Zend_Gdata_Gapps_Error\\:\\:setErrorCode\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Method Zend_Gdata_Gapps_Error\\:\\:setReason\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Method Zend_Gdata_Gapps_Error\\:\\:setInvalidInput\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Method Zend_Gdata_Gapps_Error\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Method Zend_Gdata_Gapps_Error\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Method Zend_Gdata_Gapps_Error\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Error.php + + - + message: "#^Property Zend_Gdata_Gapps_Extension_EmailList\\:\\:\\$_name \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/EmailList.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_EmailList\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/EmailList.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_EmailList\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/EmailList.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_EmailList\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/EmailList.php + + - + message: "#^Property Zend_Gdata_Gapps_Extension_Login\\:\\:\\$_username \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Login.php + + - + message: "#^Property Zend_Gdata_Gapps_Extension_Login\\:\\:\\$_hashFunctionName \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Login.php + + - + message: "#^Property Zend_Gdata_Gapps_Extension_Login\\:\\:\\$_admin \\(bool\\) does not accept bool\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Login.php + + - + message: "#^Property Zend_Gdata_Gapps_Extension_Login\\:\\:\\$_agreedToTerms \\(bool\\) does not accept bool\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Login.php + + - + message: "#^Property Zend_Gdata_Gapps_Extension_Login\\:\\:\\$_suspended \\(bool\\) does not accept bool\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Login.php + + - + message: "#^Property Zend_Gdata_Gapps_Extension_Login\\:\\:\\$_changePasswordAtNextLogin \\(bool\\) does not accept bool\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Login.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Login\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Login.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Login\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Login.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Login\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Login.php + + - + message: "#^Property Zend_Gdata_Gapps_Extension_Name\\:\\:\\$_familyName \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Name.php + + - + message: "#^Property Zend_Gdata_Gapps_Extension_Name\\:\\:\\$_givenName \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Name.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Name\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Name.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Name\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Name.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Name\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Name.php + + - + message: "#^Property Zend_Gdata_Gapps_Extension_Nickname\\:\\:\\$_name \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Nickname.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Nickname\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Nickname.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Nickname\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Nickname.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Nickname\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Nickname.php + + - + message: "#^Property Zend_Gdata_Gapps_Extension_Property\\:\\:\\$_name \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Property.php + + - + message: "#^Property Zend_Gdata_Gapps_Extension_Property\\:\\:\\$_value \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Property.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Property\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Property.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Property\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Property.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Property\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Property.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Quota\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Quota.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Quota\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Quota.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Quota\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Quota.php + + - + message: "#^Method Zend_Gdata_Gapps_Extension_Quota\\:\\:__toString\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Extension/Quota.php + + - + message: "#^Method Zend_Gdata_Gapps_GroupEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/GroupEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_GroupEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/GroupEntry.php + + - + message: "#^Argument of an invalid type array\\|Zend_Gdata_Gapps_Extension_Property supplied for foreach, only iterables are supported\\.$#" + count: 2 + path: library/Zend/Gdata/Gapps/GroupEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_GroupEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/GroupEntry.php + + - + message: "#^Cannot assign new offset to array\\|Zend_Gdata_Gapps_Extension_Property\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/GroupEntry.php + + - + message: "#^Property Zend_Gdata_Gapps_GroupFeed\\:\\:\\$_feedClassName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/GroupFeed.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_GroupQuery\\:\\:setGroupId\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/GroupQuery.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_GroupQuery\\:\\:setStartGroupId\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/GroupQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_GroupQuery\\:\\:setGroupId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/GroupQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_GroupQuery\\:\\:getGroupId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/GroupQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_GroupQuery\\:\\:setMember\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/GroupQuery.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 3 + path: library/Zend/Gdata/Gapps/GroupQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_GroupQuery\\:\\:setDirectOnly\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/GroupQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_GroupQuery\\:\\:setStartGroupId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/GroupQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_MemberEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/MemberEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_MemberEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/MemberEntry.php + + - + message: "#^Argument of an invalid type array\\|Zend_Gdata_Gapps_Extension_Property supplied for foreach, only iterables are supported\\.$#" + count: 2 + path: library/Zend/Gdata/Gapps/MemberEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_MemberEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/MemberEntry.php + + - + message: "#^Cannot assign new offset to array\\|Zend_Gdata_Gapps_Extension_Property\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/MemberEntry.php + + - + message: "#^Property Zend_Gdata_Gapps_MemberFeed\\:\\:\\$_feedClassName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/MemberFeed.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_MemberQuery\\:\\:setGroupId\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/MemberQuery.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_MemberQuery\\:\\:setMemberId\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/MemberQuery.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_MemberQuery\\:\\:setStartMemberId\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/MemberQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_MemberQuery\\:\\:setGroupId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/MemberQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_MemberQuery\\:\\:setMemberId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/MemberQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_MemberQuery\\:\\:setStartMemberId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/MemberQuery.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/MemberQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_NicknameEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/NicknameEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_NicknameEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/NicknameEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_NicknameEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/NicknameEntry.php + + - + message: "#^Property Zend_Gdata_Gapps_NicknameFeed\\:\\:\\$_feedClassName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/NicknameFeed.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_NicknameQuery\\:\\:setNickname\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/NicknameQuery.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_NicknameQuery\\:\\:setUsername\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/NicknameQuery.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_NicknameQuery\\:\\:setStartNickname\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/NicknameQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_NicknameQuery\\:\\:setNickname\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/NicknameQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_NicknameQuery\\:\\:setUsername\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/NicknameQuery.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 2 + path: library/Zend/Gdata/Gapps/NicknameQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_NicknameQuery\\:\\:setStartNickname\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/NicknameQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_OwnerEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/OwnerEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_OwnerEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/OwnerEntry.php + + - + message: "#^Argument of an invalid type array\\|Zend_Gdata_Gapps_Extension_Property supplied for foreach, only iterables are supported\\.$#" + count: 2 + path: library/Zend/Gdata/Gapps/OwnerEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_OwnerEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/OwnerEntry.php + + - + message: "#^Cannot assign new offset to array\\|Zend_Gdata_Gapps_Extension_Property\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/OwnerEntry.php + + - + message: "#^Property Zend_Gdata_Gapps_OwnerFeed\\:\\:\\$_feedClassName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/OwnerFeed.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_OwnerQuery\\:\\:setGroupId\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/OwnerQuery.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_OwnerQuery\\:\\:setOwnerEmail\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/OwnerQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_OwnerQuery\\:\\:setGroupId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/OwnerQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_OwnerQuery\\:\\:setOwnerEmail\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/OwnerQuery.php + + - + message: "#^Property Zend_Gdata_Gapps_Query\\:\\:\\$_domain \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Query.php + + - + message: "#^Method Zend_Gdata_Gapps_Query\\:\\:setDomain\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Query.php + + - + message: "#^Method Zend_Gdata_Gapps_Query\\:\\:getBaseUrl\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/Query.php + + - + message: "#^Property Zend_Gdata_Gapps_ServiceException\\:\\:\\$_rootElement has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/ServiceException.php + + - + message: "#^Method Zend_Gdata_Gapps_ServiceException\\:\\:__construct\\(\\) has parameter \\$errors with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/ServiceException.php + + - + message: "#^Method Zend_Gdata_Gapps_ServiceException\\:\\:addError\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/ServiceException.php + + - + message: "#^Method Zend_Gdata_Gapps_ServiceException\\:\\:setErrors\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/ServiceException.php + + - + message: "#^Method Zend_Gdata_Gapps_ServiceException\\:\\:getError\\(\\) has parameter \\$errorCode with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/ServiceException.php + + - + message: "#^Parameter \\#2 \\$newvalue of function ini_set expects string, int given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/ServiceException.php + + - + message: "#^Undefined variable\\: \\$php_errormsg$#" + count: 1 + path: library/Zend/Gdata/Gapps/ServiceException.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:getElementsByTagName\\(\\)\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/ServiceException.php + + - + message: "#^Method Zend_Gdata_Gapps_UserEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/UserEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_UserEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/UserEntry.php + + - + message: "#^Argument of an invalid type array\\|Zend_Gdata_Extension_FeedLink supplied for foreach, only iterables are supported\\.$#" + count: 2 + path: library/Zend/Gdata/Gapps/UserEntry.php + + - + message: "#^Method Zend_Gdata_Gapps_UserEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/UserEntry.php + + - + message: "#^Cannot assign new offset to array\\|Zend_Gdata_Extension_FeedLink\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/UserEntry.php + + - + message: "#^Property Zend_Gdata_Gapps_UserFeed\\:\\:\\$_feedClassName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/UserFeed.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_UserQuery\\:\\:setUsername\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/UserQuery.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Gapps_UserQuery\\:\\:setStartUsername\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/UserQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_UserQuery\\:\\:setUsername\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/UserQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_UserQuery\\:\\:getUsername\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/UserQuery.php + + - + message: "#^Method Zend_Gdata_Gapps_UserQuery\\:\\:setStartUsername\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/UserQuery.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: library/Zend/Gdata/Gapps/UserQuery.php + + - + message: "#^Constructor of class Zend_Gdata_Gbase has an unused parameter \\$applicationId\\.$#" + count: 1 + path: library/Zend/Gdata/Gbase.php + + - + message: "#^Constructor of class Zend_Gdata_Gbase has an unused parameter \\$client\\.$#" + count: 1 + path: library/Zend/Gdata/Gbase.php + + - + message: "#^Constructor of class Zend_Gdata_Gbase_Entry has an unused parameter \\$element\\.$#" + count: 1 + path: library/Zend/Gdata/Gbase/Entry.php + + - + message: "#^Constructor of class Zend_Gdata_Gbase_Extension_BaseAttribute has an unused parameter \\$name\\.$#" + count: 1 + path: library/Zend/Gdata/Gbase/Extension/BaseAttribute.php + + - + message: "#^Constructor of class Zend_Gdata_Gbase_Extension_BaseAttribute has an unused parameter \\$text\\.$#" + count: 1 + path: library/Zend/Gdata/Gbase/Extension/BaseAttribute.php + + - + message: "#^Constructor of class Zend_Gdata_Gbase_Extension_BaseAttribute has an unused parameter \\$type\\.$#" + count: 1 + path: library/Zend/Gdata/Gbase/Extension/BaseAttribute.php + + - + message: "#^Method Zend_Gdata_Gbase_Extension_BaseAttribute\\:\\:__construct\\(\\) has parameter \\$type with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gbase/Extension/BaseAttribute.php + + - + message: "#^Constructor of class Zend_Gdata_Gbase_Feed has an unused parameter \\$element\\.$#" + count: 1 + path: library/Zend/Gdata/Gbase/Feed.php + + - + message: "#^Constructor of class Zend_Gdata_Gbase_Query has an unused parameter \\$url\\.$#" + count: 1 + path: library/Zend/Gdata/Gbase/Query.php + + - + message: "#^Method Zend_Gdata_Gbase_Query\\:\\:__construct\\(\\) has parameter \\$url with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Gbase/Query.php + + - + message: "#^Property Zend_Gdata_Geo_Entry\\:\\:\\$_where has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Entry.php + + - + message: "#^Method Zend_Gdata_Geo_Entry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Entry.php + + - + message: "#^Method Zend_Gdata_Geo_Entry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Entry.php + + - + message: "#^Method Zend_Gdata_Geo_Entry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Entry.php + + - + message: "#^Method Zend_Gdata_Geo_Entry\\:\\:getWhere\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Entry.php + + - + message: "#^Method Zend_Gdata_Geo_Entry\\:\\:setWhere\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Entry.php + + - + message: "#^Method Zend_Gdata_Geo_Entry\\:\\:setWhere\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Entry.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Geo_Extension_GeoRssWhere\\:\\:setPoint\\(\\) expects Zend_Gdata_Geo_Extension_GmlPoint, Zend_Gdata_Geo_Extension_GmlPoint\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Extension/GeoRssWhere.php + + - + message: "#^Method Zend_Gdata_Geo_Extension_GeoRssWhere\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Extension/GeoRssWhere.php + + - + message: "#^Method Zend_Gdata_Geo_Extension_GeoRssWhere\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Extension/GeoRssWhere.php + + - + message: "#^Method Zend_Gdata_Geo_Extension_GeoRssWhere\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Extension/GeoRssWhere.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_Geo_Extension_GmlPoint\\:\\:setPos\\(\\) expects Zend_Gdata_Geo_Extension_GmlPos, Zend_Gdata_Geo_Extension_GmlPos\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Extension/GmlPoint.php + + - + message: "#^Method Zend_Gdata_Geo_Extension_GmlPoint\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Extension/GmlPoint.php + + - + message: "#^Method Zend_Gdata_Geo_Extension_GmlPoint\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Extension/GmlPoint.php + + - + message: "#^Method Zend_Gdata_Geo_Extension_GmlPoint\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Extension/GmlPoint.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Extension/GmlPos.php + + - + message: "#^Method Zend_Gdata_Geo_Feed\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Geo/Feed.php + + - + message: "#^Constructor of class Zend_Gdata_Health has an unused parameter \\$applicationId\\.$#" + count: 1 + path: library/Zend/Gdata/Health.php + + - + message: "#^Constructor of class Zend_Gdata_Health has an unused parameter \\$client\\.$#" + count: 1 + path: library/Zend/Gdata/Health.php + + - + message: "#^Constructor of class Zend_Gdata_Health has an unused parameter \\$useH9Sandbox\\.$#" + count: 1 + path: library/Zend/Gdata/Health.php + + - + message: "#^Constructor of class Zend_Gdata_Health_Extension_Ccr has an unused parameter \\$element\\.$#" + count: 1 + path: library/Zend/Gdata/Health/Extension/Ccr.php + + - + message: "#^Constructor of class Zend_Gdata_Health_ProfileEntry has an unused parameter \\$element\\.$#" + count: 1 + path: library/Zend/Gdata/Health/ProfileEntry.php + + - + message: "#^Constructor of class Zend_Gdata_Health_ProfileFeed has an unused parameter \\$element\\.$#" + count: 1 + path: library/Zend/Gdata/Health/ProfileFeed.php + + - + message: "#^Constructor of class Zend_Gdata_Health_ProfileListEntry has an unused parameter \\$element\\.$#" + count: 1 + path: library/Zend/Gdata/Health/ProfileListEntry.php + + - + message: "#^Constructor of class Zend_Gdata_Health_ProfileListFeed has an unused parameter \\$element\\.$#" + count: 1 + path: library/Zend/Gdata/Health/ProfileListFeed.php + + - + message: "#^Method Zend_Gdata_Health_ProfileListFeed\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Health/ProfileListFeed.php + + - + message: "#^Constructor of class Zend_Gdata_Health_Query has an unused parameter \\$url\\.$#" + count: 1 + path: library/Zend/Gdata/Health/Query.php + + - + message: "#^Method Zend_Gdata_Health_Query\\:\\:__construct\\(\\) has parameter \\$url with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Health/Query.php + + - + message: "#^Parameter \\#1 \\$host of method Zend_Http_Client_Adapter_Proxy\\:\\:connectHandshake\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Gdata/HttpAdapterStreamingProxy.php + + - + message: "#^Parameter \\#2 \\$port of method Zend_Http_Client_Adapter_Proxy\\:\\:connectHandshake\\(\\) expects int, string\\|false given\\.$#" + count: 1 + path: library/Zend/Gdata/HttpAdapterStreamingProxy.php + + - + message: "#^Parameter \\#1 \\$fp of function fwrite expects resource, resource\\|null given\\.$#" + count: 2 + path: library/Zend/Gdata/HttpAdapterStreamingProxy.php + + - + message: "#^Cannot call method read\\(\\) on string\\.$#" + count: 2 + path: library/Zend/Gdata/HttpAdapterStreamingProxy.php + + - + message: "#^Cannot call method closeFileHandle\\(\\) on string\\.$#" + count: 1 + path: library/Zend/Gdata/HttpAdapterStreamingProxy.php + + - + message: "#^Parameter \\#1 \\$str of function strtolower expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Gdata/HttpAdapterStreamingSocket.php + + - + message: "#^Cannot call method read\\(\\) on string\\.$#" + count: 2 + path: library/Zend/Gdata/HttpAdapterStreamingSocket.php + + - + message: "#^Cannot call method closeFileHandle\\(\\) on string\\.$#" + count: 1 + path: library/Zend/Gdata/HttpAdapterStreamingSocket.php + + - + message: "#^Parameter \\#2 \\$passphrase of function openssl_pkey_get_private expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/HttpClient.php + + - + message: "#^Property Zend_Gdata_HttpClient\\:\\:\\$_authSubPrivateKeyId \\(resource\\|null\\) does not accept resource\\|false\\.$#" + count: 1 + path: library/Zend/Gdata/HttpClient.php + + - + message: "#^Parameter \\#3 \\$priv_key_id of function openssl_sign expects resource\\|string, resource\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/HttpClient.php + + - + message: "#^Call to an undefined method Zend_Gdata_HttpClient\\:\\:_streamingRequest\\(\\)\\.$#" + count: 1 + path: library/Zend/Gdata/HttpClient.php + + - + message: "#^Cannot call method getTotalSize\\(\\) on resource\\|string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/HttpClient.php + + - + message: "#^Method Zend_Gdata_HttpClient\\:\\:_prepareBody\\(\\) should return resource\\|string but returns resource\\|string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/HttpClient.php + + - + message: "#^Method Zend_Gdata_HttpClient\\:\\:resetParameters\\(\\) has parameter \\$clearAll with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/HttpClient.php + + - + message: "#^Property Zend_Gdata_Kind_EventEntry\\:\\:\\$_who has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Property Zend_Gdata_Kind_EventEntry\\:\\:\\$_when has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Property Zend_Gdata_Kind_EventEntry\\:\\:\\$_where has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Property Zend_Gdata_Kind_EventEntry\\:\\:\\$_recurrence has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Property Zend_Gdata_Kind_EventEntry\\:\\:\\$_eventStatus has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Property Zend_Gdata_Kind_EventEntry\\:\\:\\$_comments has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Property Zend_Gdata_Kind_EventEntry\\:\\:\\$_transparency has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Property Zend_Gdata_Kind_EventEntry\\:\\:\\$_visibility has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Property Zend_Gdata_Kind_EventEntry\\:\\:\\$_recurrenceException has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Property Zend_Gdata_Kind_EventEntry\\:\\:\\$_extendedProperty has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Property Zend_Gdata_Kind_EventEntry\\:\\:\\$_originalEvent has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Property Zend_Gdata_Kind_EventEntry\\:\\:\\$_entryLink has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getWhen\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getWhere\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getWho\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getRecurrence\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getEventStatus\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getComments\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getTransparency\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getVisibility\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getRecurrenceExcption\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getExtendedProperty\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Kind_EventEntry\\:\\:getOriginalEvent\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Kind/EventEntry.php + + - + message: "#^Method Zend_Gdata_Media_Entry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Entry.php + + - + message: "#^Method Zend_Gdata_Media_Entry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Entry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Media_Extension_MediaGroup\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Entry.php + + - + message: "#^Method Zend_Gdata_Media_Entry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Entry.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaCategory\\:\\:\\$_label has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCategory.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaCategory\\:\\:\\$_scheme \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCategory.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaCategory\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCategory.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaCategory\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCategory.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaCategory\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCategory.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$bitrate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$channels with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$duration with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$expression with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$fileSize with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$framerate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$height with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$isDefault with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$lang with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$medium with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$samplingrate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$type with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$url with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:__construct\\(\\) has parameter \\$width with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Parameter \\#2 \\$value of method DOMElement\\:\\:setAttribute\\(\\) expects string, int\\|string given\\.$#" + count: 8 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Parameter \\#2 \\$value of method DOMElement\\:\\:setAttribute\\(\\) expects string, bool\\|string given\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:getUrl\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:getType\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:getMedium\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:getExpression\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaContent\\:\\:getLang\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaContent.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaCopyright\\:\\:\\$_url \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCopyright.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaCopyright\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCopyright.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaCopyright\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCopyright.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaCopyright\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCopyright.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaCredit\\:\\:\\$_role \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCredit.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaCredit\\:\\:\\$_scheme \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCredit.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaCredit\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCredit.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaCredit\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCredit.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaCredit\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaCredit.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaDescription\\:\\:\\$_type \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaDescription.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaDescription\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaDescription.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaDescription\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaDescription.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaDescription\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaDescription.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaGroup\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaGroup.php + + - + message: "#^Method Zend_Gdata_Extension\\:\\:__construct\\(\\) invoked with 1 parameter, 0 required\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaGroup.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaGroup\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaGroup.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaGroup\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaGroup.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaGroup\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaGroup.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaHash\\:\\:\\$_algo has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaHash.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaHash\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaHash.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaHash\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaHash.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaHash\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaHash.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaPlayer\\:\\:\\$_url \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaPlayer.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaPlayer\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaPlayer.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaPlayer\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaPlayer.php + + - + message: "#^Parameter \\#2 \\$value of method DOMElement\\:\\:setAttribute\\(\\) expects string, int\\|string given\\.$#" + count: 2 + path: library/Zend/Gdata/Media/Extension/MediaPlayer.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaPlayer\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaPlayer.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaRating\\:\\:\\$_scheme \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaRating.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaRating\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaRating.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaRating\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaRating.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaRating\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaRating.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaRestriction\\:\\:\\$_relationship \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaRestriction.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaRestriction\\:\\:\\$_type \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaRestriction.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaRestriction\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaRestriction.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaRestriction\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaRestriction.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaRestriction\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaRestriction.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaText\\:\\:\\$_type \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaText.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaText\\:\\:\\$_lang \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaText.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaText\\:\\:\\$_start \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaText.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaText\\:\\:\\$_end \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaText.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaText\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaText.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaText\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaText.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaText\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaText.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaThumbnail\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaThumbnail.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaThumbnail\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaThumbnail.php + + - + message: "#^Parameter \\#2 \\$value of method DOMElement\\:\\:setAttribute\\(\\) expects string, int\\|string given\\.$#" + count: 2 + path: library/Zend/Gdata/Media/Extension/MediaThumbnail.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaThumbnail\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaThumbnail.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaThumbnail\\:\\:getUrl\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaThumbnail.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaThumbnail\\:\\:getTime\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaThumbnail.php + + - + message: "#^Property Zend_Gdata_Media_Extension_MediaTitle\\:\\:\\$_type \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaTitle.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaTitle\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaTitle.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaTitle\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaTitle.php + + - + message: "#^Method Zend_Gdata_Media_Extension_MediaTitle\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Media/Extension/MediaTitle.php + + - + message: "#^Parameter \\#1 \\$filename of function file_exists expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/MediaMimeStream.php + + - + message: "#^Parameter \\#1 \\$filename of function is_readable expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/MediaMimeStream.php + + - + message: "#^Parameter \\#1 \\$filename of function fopen expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/MediaMimeStream.php + + - + message: "#^Property Zend_Gdata_MediaMimeStream\\:\\:\\$_fileHandle \\(resource\\) does not accept resource\\|false\\.$#" + count: 1 + path: library/Zend/Gdata/MediaMimeStream.php + + - + message: "#^Parameter \\#1 \\$get_as_float of function microtime expects bool, int given\\.$#" + count: 1 + path: library/Zend/Gdata/MediaMimeStream.php + + - + message: "#^Parameter \\#1 \\$fileHandle of class Zend_Gdata_MimeFile constructor expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Gdata/MediaMimeStream.php + + - + message: "#^Parameter \\#1 \\$filename of function filesize expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/MediaMimeStream.php + + - + message: "#^Method Zend_Gdata_MediaMimeStream\\:\\:wrapEntry\\(\\) has parameter \\$entry with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/MediaMimeStream.php + + - + message: "#^Method Zend_Gdata_MediaMimeStream\\:\\:wrapEntry\\(\\) has parameter \\$fileMimeType with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/MediaMimeStream.php + + - + message: "#^Method Zend_Gdata_MimeFile\\:\\:read\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Gdata/MimeFile.php + + - + message: "#^Call to an undefined method Zend_Gdata_Query\\:\\:setUser\\(\\)\\.$#" + count: 1 + path: library/Zend/Gdata/Photos.php + + - + message: "#^Method Zend_Gdata_Photos\\:\\:insertAlbumEntry\\(\\) should return Zend_Gdata_Photos_AlbumEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Photos.php + + - + message: "#^Method Zend_Gdata_Photos\\:\\:insertPhotoEntry\\(\\) should return Zend_Gdata_Photos_PhotoEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Photos.php + + - + message: "#^Method Zend_Gdata_Photos\\:\\:insertTagEntry\\(\\) should return Zend_Gdata_Photos_TagEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Photos.php + + - + message: "#^Method Zend_Gdata_Photos\\:\\:insertCommentEntry\\(\\) should return Zend_Gdata_Photos_CommentEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Photos.php + + - + message: "#^Parameter \\#1 \\$element of class Zend_Gdata_Photos_AlbumEntry constructor expects DOMElement\\|null, string given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos.php + + - + message: "#^Parameter \\#1 \\$element of class Zend_Gdata_Photos_PhotoEntry constructor expects DOMElement\\|null, string given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos.php + + - + message: "#^Parameter \\#1 \\$element of class Zend_Gdata_Photos_CommentEntry constructor expects DOMElement\\|null, string given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos.php + + - + message: "#^Parameter \\#1 \\$element of class Zend_Gdata_Photos_TagEntry constructor expects DOMElement\\|null, string given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos.php + + - + message: "#^Method Zend_Gdata_Photos_AlbumEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Method Zend_Gdata_Photos_AlbumEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Timestamp\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_User\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Nickname\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Access\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Location\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Name\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_NumPhotos\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_CommentCount\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_CommentingEnabled\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Id\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Media_Extension_MediaGroup\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Method Zend_Gdata_Photos_AlbumEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Access to an undefined property Zend_Gdata_Photos_AlbumEntry\\:\\:\\$_location\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumEntry.php + + - + message: "#^Property Zend_Gdata_Photos_AlbumFeed\\:\\:\\$_feedClassName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Property Zend_Gdata_Photos_AlbumFeed\\:\\:\\$_entryKindClassMapping has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Method Zend_Gdata_Photos_AlbumFeed\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Method Zend_Gdata_Photos_AlbumFeed\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Method Zend_Gdata_Photos_AlbumFeed\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Id\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_User\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Nickname\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Name\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Location\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Access\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Timestamp\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_NumPhotos\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_CommentingEnabled\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_CommentCount\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Method Zend_Gdata_Photos_AlbumFeed\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Access to an undefined property Zend_Gdata_Photos_AlbumFeed\\:\\:\\$_geoRssWhere\\.$#" + count: 2 + path: library/Zend/Gdata/Photos/AlbumFeed.php + + - + message: "#^Method Zend_Gdata_Photos_AlbumQuery\\:\\:getAlbumId\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumQuery.php + + - + message: "#^Method Zend_Gdata_Photos_AlbumQuery\\:\\:getQueryUrl\\(\\) has parameter \\$incomingUri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumQuery.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumQuery.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/AlbumQuery.php + + - + message: "#^Method Zend_Gdata_Photos_CommentEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/CommentEntry.php + + - + message: "#^Method Zend_Gdata_Photos_CommentEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/CommentEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Id\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/CommentEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_PhotoId\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/CommentEntry.php + + - + message: "#^Method Zend_Gdata_Photos_CommentEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/CommentEntry.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Access.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/AlbumId.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/BytesUsed.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Checksum.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Client.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/CommentCount.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/CommentingEnabled.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Height.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Id.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Location.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/MaxPhotosPerAlbum.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Name.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Nickname.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/NumPhotos.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/NumPhotosRemaining.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/PhotoId.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Position.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/QuotaCurrent.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/QuotaLimit.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Rotation.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Size.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Thumbnail.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Timestamp.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/User.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Version.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Weight.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Gdata_App_Base\\:\\:setText\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/Extension/Width.php + + - + message: "#^Method Zend_Gdata_Photos_PhotoEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Method Zend_Gdata_Photos_PhotoEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_AlbumId\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Id\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Version\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Width\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Height\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Size\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Client\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Checksum\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Timestamp\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_CommentingEnabled\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_CommentCount\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Exif_Extension_Tags\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Geo_Extension_GeoRssWhere\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Method Zend_Gdata_Photos_PhotoEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Parameter \\#1 \\$value \\(string\\) of method Zend_Gdata_Photos_PhotoEntry\\:\\:setMediaGroup\\(\\) should be compatible with parameter \\$mediaGroup \\(Zend_Gdata_Media_Extension_MediaGroup\\) of method Zend_Gdata_Media_Entry\\:\\:setMediaGroup\\(\\)$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoEntry.php + + - + message: "#^Property Zend_Gdata_Photos_PhotoFeed\\:\\:\\$_feedClassName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Property Zend_Gdata_Photos_PhotoFeed\\:\\:\\$_entryKindClassMapping has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Method Zend_Gdata_Photos_PhotoFeed\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Method Zend_Gdata_Photos_PhotoFeed\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Method Zend_Gdata_Photos_PhotoFeed\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Id\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Version\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Width\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Height\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Size\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Client\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Checksum\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Timestamp\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_CommentingEnabled\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_CommentCount\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Media_Extension_MediaGroup\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Method Zend_Gdata_Photos_PhotoFeed\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoFeed.php + + - + message: "#^Method Zend_Gdata_Photos_PhotoQuery\\:\\:setPhotoId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoQuery.php + + - + message: "#^Method Zend_Gdata_Photos_PhotoQuery\\:\\:getQueryUrl\\(\\) has parameter \\$incomingUri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoQuery.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/PhotoQuery.php + + - + message: "#^Property Zend_Gdata_Photos_TagEntry\\:\\:\\$_gphotoWeight has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/TagEntry.php + + - + message: "#^Method Zend_Gdata_Photos_TagEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/TagEntry.php + + - + message: "#^Method Zend_Gdata_Photos_TagEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/TagEntry.php + + - + message: "#^Method Zend_Gdata_Photos_TagEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/TagEntry.php + + - + message: "#^Method Zend_Gdata_Photos_UserEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserEntry.php + + - + message: "#^Method Zend_Gdata_Photos_UserEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Nickname\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Thumbnail\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_User\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_QuotaCurrent\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_QuotaLimit\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserEntry.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_MaxPhotosPerAlbum\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserEntry.php + + - + message: "#^Method Zend_Gdata_Photos_UserEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserEntry.php + + - + message: "#^Property Zend_Gdata_Photos_UserFeed\\:\\:\\$_feedClassName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserFeed.php + + - + message: "#^Property Zend_Gdata_Photos_UserFeed\\:\\:\\$_entryKindClassMapping has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserFeed.php + + - + message: "#^Method Zend_Gdata_Photos_UserFeed\\:\\:__construct\\(\\) has parameter \\$element with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserFeed.php + + - + message: "#^Method Zend_Gdata_Photos_UserFeed\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserFeed.php + + - + message: "#^Method Zend_Gdata_Photos_UserFeed\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserFeed.php + + - + message: "#^Method Zend_Gdata_Photos_UserFeed\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_User\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Nickname\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on string\\|Zend_Gdata_Photos_Extension_Thumbnail\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserFeed.php + + - + message: "#^Method Zend_Gdata_Photos_UserQuery\\:\\:setUser\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserQuery.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 9 + path: library/Zend/Gdata/Photos/UserQuery.php + + - + message: "#^Method Zend_Gdata_Photos_UserQuery\\:\\:setAccess\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserQuery.php + + - + message: "#^Method Zend_Gdata_Photos_UserQuery\\:\\:setTag\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserQuery.php + + - + message: "#^Method Zend_Gdata_Photos_UserQuery\\:\\:setKind\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserQuery.php + + - + message: "#^Method Zend_Gdata_Photos_UserQuery\\:\\:setImgMax\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserQuery.php + + - + message: "#^Method Zend_Gdata_Photos_UserQuery\\:\\:setThumbsize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserQuery.php + + - + message: "#^Method Zend_Gdata_Photos_UserQuery\\:\\:getQueryUrl\\(\\) has parameter \\$incomingUri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Photos/UserQuery.php + + - + message: "#^Method Zend_Gdata_Query\\:\\:__construct\\(\\) has parameter \\$url with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Query.php + + - + message: "#^Method Zend_Gdata_Query\\:\\:resetParameters\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Query.php + + - + message: "#^Method Zend_Gdata_Query\\:\\:getParam\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Query.php + + - + message: "#^Parameter \\#1 \\$timestamp of static method Zend_Gdata_App_Util\\:\\:formatTimestamp\\(\\) expects int, string given\\.$#" + count: 4 + path: library/Zend/Gdata/Query.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: library/Zend/Gdata/Query.php + + - + message: "#^Method Zend_Gdata_Query\\:\\:getCategory\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Query.php + + - + message: "#^Method Zend_Gdata_Query\\:\\:__get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Query.php + + - + message: "#^Method Zend_Gdata_Query\\:\\:__get\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Query.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func expects callable\\(\\)\\: mixed, array\\(\\$this\\(Zend_Gdata_Query\\), string\\) given\\.$#" + count: 2 + path: library/Zend/Gdata/Query.php + + - + message: "#^Method Zend_Gdata_Query\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Query.php + + - + message: "#^Method Zend_Gdata_Query\\:\\:__set\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Query.php + + - + message: "#^Method Zend_Gdata_Query\\:\\:__set\\(\\) has parameter \\$val with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Query.php + + - + message: "#^Access to an undefined property Zend_Gdata_Spreadsheets\\:\\:\\$_server\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Cannot call method setCell\\(\\) on string\\|Zend_Gdata_Spreadsheets_CellEntry\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Parameter \\#2 \\$row of class Zend_Gdata_Spreadsheets_Extension_Cell constructor expects string\\|null, int given\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Parameter \\#3 \\$col of class Zend_Gdata_Spreadsheets_Extension_Cell constructor expects string\\|null, int given\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Parameter \\#4 \\$inputValue of class Zend_Gdata_Spreadsheets_Extension_Cell constructor expects string\\|null, int given\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Cannot call method save\\(\\) on string\\|Zend_Gdata_Spreadsheets_CellEntry\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Method Zend_Gdata_Spreadsheets\\:\\:updateCell\\(\\) should return Zend_Gdata_Spreadsheets_CellEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Call to an undefined method Zend_Gdata_App_Base\\:\\:setColumnName\\(\\)\\.$#" + count: 2 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Cannot call method getLink\\(\\) on string\\|Zend_Gdata_Spreadsheets_ListFeed\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Method Zend_Gdata_Spreadsheets\\:\\:insertRow\\(\\) should return Zend_Gdata_Spreadsheets_ListEntry but returns Zend_Gdata_App_Entry\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Method Zend_Gdata_Spreadsheets\\:\\:updateRow\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Method Zend_Gdata_Spreadsheets\\:\\:deleteRow\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Parameter \\#1 \\$feed of method Zend_Gdata_App\\:\\:retrieveAllEntriesForFeed\\(\\) expects object, string\\|Zend_Gdata_Spreadsheets_ListFeed given\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Parameter \\#1 \\$feed of method Zend_Gdata_App\\:\\:retrieveAllEntriesForFeed\\(\\) expects object, string\\|Zend_Gdata_Spreadsheets_CellFeed given\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_CellEntry\\:\\:\\$_cell has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellEntry.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_CellEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellEntry.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_CellEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellEntry.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_CellEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellEntry.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_CellFeed\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellFeed.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_CellFeed\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellFeed.php + + - + message: "#^Access to an undefined property Zend_Gdata_Spreadsheets_CellFeed\\:\\:\\$rowCount\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on int\\|Zend_Gdata_Spreadsheets_Extension_RowCount\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellFeed.php + + - + message: "#^Access to an undefined property Zend_Gdata_Spreadsheets_CellFeed\\:\\:\\$colCount\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellFeed.php + + - + message: "#^Cannot call method getDOM\\(\\) on int\\|Zend_Gdata_Spreadsheets_Extension_ColCount\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellFeed.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_CellFeed\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellFeed.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_CellFeed\\:\\:setRowCount\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellFeed.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_CellFeed\\:\\:setColumnCount\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellFeed.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_CellQuery\\:\\:\\$_visibility has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_CellQuery\\:\\:\\$_projection has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_CellQuery\\:\\:\\$_spreadsheetKey has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_CellQuery\\:\\:\\$_worksheetId has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_CellQuery\\:\\:\\$_cellId has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellQuery.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_CellQuery\\:\\:setVisibility\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/CellQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_DocumentQuery\\:\\:\\$_documentType has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/DocumentQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_DocumentQuery\\:\\:\\$_visibility has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/DocumentQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_DocumentQuery\\:\\:\\$_projection has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/DocumentQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_DocumentQuery\\:\\:\\$_spreadsheetKey has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/DocumentQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_DocumentQuery\\:\\:\\$_worksheetId has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/DocumentQuery.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_DocumentQuery\\:\\:setVisibility\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/DocumentQuery.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_DocumentQuery\\:\\:appendVisibilityProjection\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/DocumentQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_Extension_Cell\\:\\:\\$_row \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Cell.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_Extension_Cell\\:\\:\\$_col \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Cell.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_Extension_Cell\\:\\:\\$_inputValue \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Cell.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_Extension_Cell\\:\\:\\$_numericValue \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Cell.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_Extension_Cell\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Cell.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_Extension_Cell\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Cell.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_Extension_Cell\\:\\:takeAttributeFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Cell.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_Extension_Cell\\:\\:setRow\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Cell.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_Extension_Cell\\:\\:setColumn\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Cell.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_Extension_Cell\\:\\:setInputValue\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Cell.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_Extension_Cell\\:\\:setNumericValue\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Cell.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_Extension_Custom\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Custom.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_Extension_Custom\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Custom.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_Extension_Custom\\:\\:transferFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Custom.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_Extension_Custom\\:\\:setColumnName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Custom.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_Extension_Custom\\:\\:getColumnName\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/Extension/Custom.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_ListEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/ListEntry.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_ListEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/ListEntry.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_ListEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/ListEntry.php + + - + message: "#^Access to an undefined property Zend_Gdata_Spreadsheets_ListEntry\\:\\:\\$customByName\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/ListEntry.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_ListQuery\\:\\:\\$_visibility has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/ListQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_ListQuery\\:\\:\\$_projection has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/ListQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_ListQuery\\:\\:\\$_spreadsheetKey has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/ListQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_ListQuery\\:\\:\\$_worksheetId has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/ListQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_ListQuery\\:\\:\\$_rowId has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/ListQuery.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_WorksheetEntry\\:\\:\\$_rowCount has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/WorksheetEntry.php + + - + message: "#^Property Zend_Gdata_Spreadsheets_WorksheetEntry\\:\\:\\$_colCount has no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/WorksheetEntry.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_WorksheetEntry\\:\\:getDOM\\(\\) has parameter \\$majorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/WorksheetEntry.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_WorksheetEntry\\:\\:getDOM\\(\\) has parameter \\$minorVersion with no typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/WorksheetEntry.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_WorksheetEntry\\:\\:takeChildFromDOM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/WorksheetEntry.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_WorksheetEntry\\:\\:setRowCount\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/WorksheetEntry.php + + - + message: "#^Method Zend_Gdata_Spreadsheets_WorksheetEntry\\:\\:setColumnCount\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Gdata/Spreadsheets/WorksheetEntry.php + + - + message: "#^Return type \\(Zend_Markup_TokenList\\) of method Zend_Markup_Parser_Bbcode\\:\\:parse\\(\\) should be compatible with return type \\(array\\) of method Zend_Markup_Parser_ParserInterface\\:\\:parse\\(\\)$#" + count: 1 + path: library/Zend/Markup/Parser/Bbcode.php + + - + message: "#^Parameter \\#4 \\$flags of function preg_match expects int, null given\\.$#" + count: 3 + path: library/Zend/Markup/Parser/Bbcode.php + + - + message: "#^Method Zend_Markup_Renderer_Html_HtmlAbstract\\:\\:setRenderer\\(\\) should return Zend_Markup_Renderer_Html_HtmlAbstract but return statement is missing\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/Html/HtmlAbstract.php + + - + message: "#^Parameter \\#1 \\$haystack of function strpos expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Markup/Renderer/Html/Img.php + + - + message: "#^Parameter \\#1 \\$str of function substr expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/Html/Img.php + + - + message: "#^Parameter \\#1 \\$string of function htmlentities expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/Html/Img.php + + - + message: "#^Binary operation \"\\^\" between string and 16 results in an error\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/RendererAbstract.php + + - + message: "#^Binary operation \"&\" between string and 4 results in an error\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/RendererAbstract.php + + - + message: "#^Binary operation \"&\" between string and 16 results in an error\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/RendererAbstract.php + + - + message: "#^Cannot call method current\\(\\) on array\\|Zend_Markup_TokenList\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/RendererAbstract.php + + - + message: "#^Parameter \\#1 \\$token of method Zend_Markup_Renderer_RendererAbstract\\:\\:_render\\(\\) expects Zend_Markup_Token, Zend_Markup_Token\\|false given\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/RendererAbstract.php + + - + message: "#^Parameter \\#1 \\$token of method Zend_Markup_Renderer_RendererAbstract\\:\\:_execute\\(\\) expects Zend_Markup_Token, Zend_Markup_Token\\|false given\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/RendererAbstract.php + + - + message: "#^Parameter \\#1 \\$markup of method Zend_Markup_Renderer_RendererAbstract\\:\\:getFilter\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/RendererAbstract.php + + - + message: "#^Property Zend_Markup_Renderer_RendererAbstract\\:\\:\\$_group \\(string\\) does not accept string\\|true\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/RendererAbstract.php + + - + message: "#^Parameter \\#1 \\$name of method Zend_Loader_PluginLoader\\:\\:load\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/RendererAbstract.php + + - + message: "#^Parameter \\#2 \\$text of method Zend_Markup_Renderer_TokenConverterInterface\\:\\:convert\\(\\) expects string, null given\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/RendererAbstract.php + + - + message: "#^Method Zend_Markup_Renderer_RendererAbstract\\:\\:addDefaultFilter\\(\\) has parameter \\$placement with no typehint specified\\.$#" + count: 1 + path: library/Zend/Markup/Renderer/RendererAbstract.php + + - + message: "#^Method Zend_Markup_Token\\:\\:addAttribute\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Markup/Token.php + + - + message: "#^Method Zend_Markup_Token\\:\\:addAttribute\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Markup/Token.php + + - + message: "#^Method Zend_Markup_Token\\:\\:getChildren\\(\\) should return Zend_Markup_TokenList but returns Zend_Markup_TokenList\\|null\\.$#" + count: 1 + path: library/Zend/Markup/Token.php + + - + message: "#^Method Zend_Markup_Token\\:\\:getParent\\(\\) should return Zend_Markup_Token but returns Zend_Markup_Token\\|null\\.$#" + count: 1 + path: library/Zend/Markup/Token.php + + - + message: "#^Method Zend_Markup_TokenList\\:\\:key\\(\\) should return int\\|null but returns int\\|string\\|null\\.$#" + count: 1 + path: library/Zend/Markup/TokenList.php + + - + message: "#^Property Zend_Measure_Abstract\\:\\:\\$_units has no typehint specified\\.$#" + count: 1 + path: library/Zend/Measure/Abstract.php + + - + message: "#^Parameter \\#1 \\$locale of static method Zend_Locale\\:\\:isLocale\\(\\) expects string\\|Zend_Locale, int given\\.$#" + count: 1 + path: library/Zend/Measure/Abstract.php + + - + message: "#^Parameter \\#2 \\$strict of static method Zend_Locale\\:\\:isLocale\\(\\) expects bool, null given\\.$#" + count: 2 + path: library/Zend/Measure/Abstract.php + + - + message: "#^Parameter \\#1 \\$locale of method Zend_Measure_Abstract\\:\\:setLocale\\(\\) expects string\\|Zend_Locale\\|null, int\\|Zend_Locale\\|null given\\.$#" + count: 1 + path: library/Zend/Measure/Abstract.php + + - + message: "#^Parameter \\#1 \\$input of static method Zend_Locale_Format\\:\\:getNumber\\(\\) expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Measure/Abstract.php + + - + message: "#^Binary operation \"\\+\" between int\\|string and int\\|string results in an error\\.$#" + count: 1 + path: library/Zend/Measure/Abstract.php + + - + message: "#^Binary operation \"\\-\" between int\\|string and int\\|string results in an error\\.$#" + count: 2 + path: library/Zend/Measure/Abstract.php + + - + message: "#^Array has 2 duplicate keys with value '/' \\('/', '/'\\)\\.$#" + count: 1 + path: library/Zend/Measure/Acceleration.php + + - + message: "#^Array has 2 duplicate keys with value '' \\('', ''\\)\\.$#" + count: 1 + path: library/Zend/Measure/Cooking/Volume.php + + - + message: "#^Array has 2 duplicate keys with value '' \\('', ''\\)\\.$#" + count: 2 + path: library/Zend/Measure/Cooking/Weight.php + + - + message: "#^Parameter \\#2 \\$strict of static method Zend_Locale\\:\\:isLocale\\(\\) expects bool, null given\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Method Zend_Measure_Number\\:\\:setValue\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Parameter \\#2 \\$subject of function preg_match expects string, int given\\.$#" + count: 8 + path: library/Zend/Measure/Number.php + + - + message: "#^Parameter \\#1 \\$str of function strtoupper expects string, int given\\.$#" + count: 4 + path: library/Zend/Measure/Number.php + + - + message: "#^Parameter \\#1 \\$input of static method Zend_Locale_Format\\:\\:getInteger\\(\\) expects string, int given\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Property Zend_Measure_Abstract\\:\\:\\$_type \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Parameter \\#1 \\$str of function str_split expects string, int given\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, int given\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Parameter \\#1 \\$hexadecimal_number of function hexdec expects string, float\\|int\\|string given\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Parameter \\#1 \\$str of function strrev expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Parameter \\#1 \\$var of function sizeof expects array\\|Countable, array\\\\|false given\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Cannot access offset int on array\\\\|false\\.$#" + count: 4 + path: library/Zend/Measure/Number.php + + - + message: "#^Parameter \\#3 \\$subject of function str_replace expects array\\|string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Variable \\$newvalue might not be defined\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Return type \\(void\\) of method Zend_Measure_Number\\:\\:setType\\(\\) should be compatible with return type \\(Zend_Measure_Abstract\\) of method Zend_Measure_Abstract\\:\\:setType\\(\\)$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Method Zend_Measure_Abstract\\:\\:getType\\(\\) invoked with 1 parameter, 0 required\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Parameter \\#1 \\$input of method Zend_Measure_Number\\:\\:_toDecimal\\(\\) expects int, int\\|string given\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Measure_Number\\:\\:_fromDecimal\\(\\) expects int, string given\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Method Zend_Measure_Number\\:\\:convertTo\\(\\) has parameter \\$locale with no typehint specified\\.$#" + count: 1 + path: library/Zend/Measure/Number.php + + - + message: "#^Array has 2 duplicate keys with value '\\*' \\('\\*', '\\*'\\)\\.$#" + count: 1 + path: library/Zend/Measure/Time.php + + - + message: "#^Array has 2 duplicate keys with value '\\*' \\('\\*', '\\*'\\)\\.$#" + count: 1 + path: library/Zend/Measure/Volume.php + + - + message: "#^Call to an undefined method Zend_Memory_Container\\:\\:destroy\\(\\)\\.$#" + count: 1 + path: library/Zend/Memory/AccessController.php + + - + message: "#^Method Zend_Memory_AccessController\\:\\:touch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/AccessController.php + + - + message: "#^Method Zend_Memory_AccessController\\:\\:lock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/AccessController.php + + - + message: "#^Method Zend_Memory_AccessController\\:\\:unlock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/AccessController.php + + - + message: "#^Method Zend_Memory_AccessController\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/AccessController.php + + - + message: "#^Method Zend_Memory_Container_Interface\\:\\:touch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Interface.php + + - + message: "#^Method Zend_Memory_Container_Interface\\:\\:lock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Interface.php + + - + message: "#^Method Zend_Memory_Container_Interface\\:\\:unlock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Interface.php + + - + message: "#^Method Zend_Memory_Container_Locked\\:\\:lock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Locked.php + + - + message: "#^Method Zend_Memory_Container_Locked\\:\\:unlock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Locked.php + + - + message: "#^Method Zend_Memory_Container_Locked\\:\\:touch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Locked.php + + - + message: "#^Method Zend_Memory_Container_Locked\\:\\:destroy\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Locked.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:lock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:unlock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:isLocked\\(\\) should return bool but returns int\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Cannot call method getRef\\(\\) on Zend_Memory_Value\\|null\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:touch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:processUpdate\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:startTrace\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Cannot call method startTrace\\(\\) on Zend_Memory_Value\\|null\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:setValue\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:setValue\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:unloadValue\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:markAsSwapped\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:isSwapped\\(\\) should return bool but returns int\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Container_Movable\\:\\:destroy\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Container/Movable.php + + - + message: "#^Method Zend_Memory_Manager\\:\\:_generateMemManagerId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Parameter \\#1 \\$str of function trim expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Call to an undefined method Zend_Cache_Backend\\|Zend_Cache_Backend_Interface\\:\\:clean\\(\\)\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Method Zend_Memory_Manager\\:\\:setMemoryLimit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Method Zend_Memory_Manager\\:\\:setMinSize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Method Zend_Memory_Manager\\:\\:unlink\\(\\) should return null but return statement is missing\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Method Zend_Memory_Manager\\:\\:processUpdate\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Method Zend_Memory_Manager\\:\\:_commit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Method Zend_Memory_Manager\\:\\:_swapCheck\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^PHPDoc tag @throws with type Zend_MemoryException is not subtype of Throwable$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Method Zend_Memory_Manager\\:\\:_swap\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Call to an undefined method Zend_Cache_Backend\\|Zend_Cache_Backend_Interface\\:\\:save\\(\\)\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Method Zend_Memory_Manager\\:\\:load\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Call to an undefined method Zend_Cache_Backend\\|Zend_Cache_Backend_Interface\\:\\:load\\(\\)\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Memory/Manager.php + + - + message: "#^Method Zend_Memory_Value\\:\\:offsetSet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Value.php + + - + message: "#^Call to an undefined method Zend_Memory_Container_Interface\\:\\:processUpdate\\(\\)\\.$#" + count: 2 + path: library/Zend/Memory/Value.php + + - + message: "#^Method Zend_Memory_Value\\:\\:offsetUnset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Value.php + + - + message: "#^Method Zend_Memory_Value\\:\\:startTrace\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Memory/Value.php + + - + message: "#^Parameter \\#4 \\$timeout of function stream_socket_client expects float, string\\|false given\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Apns.php + + - + message: "#^Property Zend_Mobile_Push_Apns\\:\\:\\$_socket \\(resource\\) does not accept resource\\|false\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Apns.php + + - + message: "#^Parameter \\#2 \\$mode of function stream_set_blocking expects bool, int given\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Apns.php + + - + message: "#^Method Zend_Mobile_Push_Apns\\:\\:_read\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Apns.php + + - + message: "#^Call to an undefined method Zend_Mobile_Push_Message_Abstract\\:\\:getAlert\\(\\)\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Apns.php + + - + message: "#^Call to an undefined method Zend_Mobile_Push_Message_Abstract\\:\\:getBadge\\(\\)\\.$#" + count: 2 + path: library/Zend/Mobile/Push/Apns.php + + - + message: "#^Call to an undefined method Zend_Mobile_Push_Message_Abstract\\:\\:getSound\\(\\)\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Apns.php + + - + message: "#^Call to an undefined method Zend_Mobile_Push_Message_Abstract\\:\\:getCustomData\\(\\)\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Apns.php + + - + message: "#^Call to an undefined method Zend_Mobile_Push_Message_Abstract\\:\\:getExpire\\(\\)\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Apns.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Apns.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 10 + path: library/Zend/Mobile/Push/Apns.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Gcm.php + + - + message: "#^Return type \\(Zend_Mobile_Push_Response_Gcm\\) of method Zend_Mobile_Push_Gcm\\:\\:send\\(\\) should be compatible with return type \\(bool\\) of method Zend_Mobile_Push_Abstract\\:\\:send\\(\\)$#" + count: 1 + path: library/Zend/Mobile/Push/Gcm.php + + - + message: "#^Return type \\(Zend_Mobile_Push_Response_Gcm\\) of method Zend_Mobile_Push_Gcm\\:\\:send\\(\\) should be compatible with return type \\(bool\\) of method Zend_Mobile_Push_Interface\\:\\:send\\(\\)$#" + count: 1 + path: library/Zend/Mobile/Push/Gcm.php + + - + message: "#^Call to an undefined method Zend_Mobile_Push_Message_Abstract\\:\\:toJson\\(\\)\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Gcm.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 4 + path: library/Zend/Mobile/Push/Gcm.php + + - + message: "#^Parameter \\#2 \\$message of class Zend_Mobile_Push_Response_Gcm constructor expects Zend_Mobile_Push_Message_Gcm\\|null, Zend_Mobile_Push_Message_Abstract given\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Gcm.php + + - + message: "#^Result of && is always false\\.$#" + count: 5 + path: library/Zend/Mobile/Push/Message/Apns.php + + - + message: "#^Call to function is_null\\(\\) with int will always evaluate to false\\.$#" + count: 2 + path: library/Zend/Mobile/Push/Message/Apns.php + + - + message: "#^Method Zend_Mobile_Push_Message_Apns\\:\\:setBadge\\(\\) should return Zend_Mobile_Push_Message_Apns but return statement is missing\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Message/Apns.php + + - + message: "#^Method Zend_Mobile_Push_Message_Apns\\:\\:addCustomData\\(\\) should return Zend_Mobile_Push_Message_Apns but return statement is missing\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Message/Apns.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, bool\\|float\\|int\\|string given\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Message/Gcm.php + + - + message: "#^Method Zend_Mobile_Push_Message_Gcm\\:\\:toJson\\(\\) should return string but returns string\\|false\\.$#" + count: 2 + path: library/Zend/Mobile/Push/Message/Gcm.php + + - + message: "#^Method Zend_Mobile_Push_Message_Mpns_Tile\\:\\:setBackContent\\(\\) should return Zend_Mobile_Push_Message_Mpns_Tile but return statement is missing\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Message/Mpns/Tile.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Mpns.php + + - + message: "#^Call to an undefined method Zend_Mobile_Push_Message_Abstract\\:\\:getDelay\\(\\)\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Mpns.php + + - + message: "#^Call to an undefined method Zend_Mobile_Push_Message_Abstract\\:\\:getNotificationType\\(\\)\\.$#" + count: 2 + path: library/Zend/Mobile/Push/Mpns.php + + - + message: "#^Call to an undefined method Zend_Mobile_Push_Message_Abstract\\:\\:getXmlPayload\\(\\)\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Mpns.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 7 + path: library/Zend/Mobile/Push/Mpns.php + + - + message: "#^Left side of && is always true\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Response/Gcm.php + + - + message: "#^Method Zend_Mobile_Push_Test_ApnsProxy\\:\\:setReadResponse\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Test/ApnsProxy.php + + - + message: "#^Method Zend_Mobile_Push_Test_ApnsProxy\\:\\:_connect\\(\\) has parameter \\$uri with no typehint specified\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Test/ApnsProxy.php + + - + message: "#^Parameter \\#1 \\$length \\(string\\) of method Zend_Mobile_Push_Test_ApnsProxy\\:\\:_read\\(\\) should be compatible with parameter \\$length \\(int\\) of method Zend_Mobile_Push_Apns\\:\\:_read\\(\\)$#" + count: 1 + path: library/Zend/Mobile/Push/Test/ApnsProxy.php + + - + message: "#^Parameter \\#1 \\$str of function substr expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Test/ApnsProxy.php + + - + message: "#^Parameter \\#3 \\$length of function substr expects int, string given\\.$#" + count: 1 + path: library/Zend/Mobile/Push/Test/ApnsProxy.php + + - + message: "#^Method Zend_Pdf\\:\\:setMemoryManager\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:save\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf\\:\\:\\$_pdfHeaderVersion\\.$#" + count: 2 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Trailer_Keeper\\:\\:\\$Encrypt\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Trailer_Keeper\\:\\:\\$Root\\.$#" + count: 5 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Trailer_Keeper\\:\\:\\$Info\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Parameter \\#1 \\$prefix of function uniqid expects string, int given\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$ID\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Size\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Type\\.$#" + count: 3 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Version\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Trailer_Generator\\:\\:\\$Root\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Kids\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Count\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Pages\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:rollback\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Call to an undefined method Zend_Pdf_Trailer\\:\\:getPrev\\(\\)\\.$#" + count: 3 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Trailer\\:\\:\\$Size\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Trailer\\:\\:\\$Root\\.$#" + count: 13 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:_loadPages\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Call to an undefined method Zend_Pdf_Element_Reference\\:\\:getKeys\\(\\)\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Reference\\:\\:\\$Kids\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Parameter \\#2 \\$search of function array_key_exists expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:_loadNamedDestinations\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Reference\\:\\:\\$Version\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Reference\\:\\:\\$Names\\.$#" + count: 2 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Reference\\:\\:\\$Dests\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:_loadOutlines\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Reference\\:\\:\\$Outlines\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:_loadJavaScript\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Reference\\:\\:\\$S\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Reference\\:\\:\\$JS\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Cannot assign new offset to array\\|string\\|null\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:_loadFormFields\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Reference\\:\\:\\$AcroForm\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:setTextField\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Call to an undefined method Zend_Pdf_Element\\:\\:add\\(\\)\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:setTextFieldProperties\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:markTextFieldAsReadOnly\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:_dumpPages\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:_dumpNamedDestinations\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Names\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:_dumpOutlines\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Expression \"\\$root\\-\\>Outlines\\-\\>touch\" on a separate line does not do anything\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:setMetadata\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:setOpenAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Parameter \\#1 \\$factory of method Zend_Pdf_Action\\:\\:dumpAction\\(\\) expects Zend_Pdf_ElementFactory, Zend_Pdf_ElementFactory_Interface given\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:getNamedDestination\\(\\) should return Zend_Pdf_Action_GoTo\\|Zend_Pdf_Destination_Explicit but returns null\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:setNamedDestination\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$items\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Cannot assign offset string to array\\|SplObjectStorage\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property RecursiveIterator\\:\\:\\$next\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:_cleanUpAction\\(\\) should return Zend_Pdf_Action\\|null but returns RecursiveIterator\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Trailer\\:\\:\\$Info\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:setJavaScript\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:resetJavaScript\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Method Zend_Pdf\\:\\:addJavaScript\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Parameter \\#1 \\$arr1 of function array_merge expects array, array\\|string given\\.$#" + count: 1 + path: library/Zend/Pdf.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Next\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$S\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_GoTo constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 19 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_GoToR constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_GoToE constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_Launch constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_Thread constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_URI constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_Sound constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_Movie constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_Hide constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_Named constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_SubmitForm constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_ResetForm constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_ImportData constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_JavaScript constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_SetOCGState constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_Rendition constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_Trans constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_GoTo3DView constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Parameter \\#1 \\$dictionary of class Zend_Pdf_Action_Unknown constructor expects Zend_Pdf_Element_Dictionary, Zend_Pdf_Element given\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Next\\.$#" + count: 3 + path: library/Zend/Pdf/Action.php + + - + message: "#^Method Zend_Pdf_Action\\:\\:key\\(\\) should return int but returns int\\|string\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Method Zend_Pdf_Action\\:\\:next\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Method Zend_Pdf_Action\\:\\:rewind\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Access to an undefined property Zend_Pdf_Action\\:\\:\\$childOutlines\\.$#" + count: 1 + path: library/Zend/Pdf/Action.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$D\\.$#" + count: 2 + path: library/Zend/Pdf/Action/GoTo.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Type\\.$#" + count: 1 + path: library/Zend/Pdf/Action/GoTo.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$S\\.$#" + count: 1 + path: library/Zend/Pdf/Action/GoTo.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Next\\.$#" + count: 1 + path: library/Zend/Pdf/Action/GoTo.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$D\\.$#" + count: 1 + path: library/Zend/Pdf/Action/GoTo.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$URI\\.$#" + count: 2 + path: library/Zend/Pdf/Action/URI.php + + - + message: "#^Method Zend_Pdf_Action_URI\\:\\:_validateUri\\(\\) should return true but return statement is missing\\.$#" + count: 1 + path: library/Zend/Pdf/Action/URI.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Type\\.$#" + count: 1 + path: library/Zend/Pdf/Action/URI.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$S\\.$#" + count: 1 + path: library/Zend/Pdf/Action/URI.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Next\\.$#" + count: 1 + path: library/Zend/Pdf/Action/URI.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$IsMap\\.$#" + count: 1 + path: library/Zend/Pdf/Action/URI.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$URI\\.$#" + count: 2 + path: library/Zend/Pdf/Action/URI.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$IsMap\\.$#" + count: 3 + path: library/Zend/Pdf/Action/URI.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Rect\\.$#" + count: 8 + path: library/Zend/Pdf/Annotation.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Contents\\.$#" + count: 2 + path: library/Zend/Pdf/Annotation.php + + - + message: "#^Property Zend_Pdf_Annotation\\:\\:\\$_annotationDictionary \\(Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\) does not accept Zend_Pdf_Element\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$Type\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$Rect\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation.php + + - + message: "#^Method Zend_Pdf_Annotation\\:\\:load\\(\\) should return Zend_Pdf_Annotation but return statement is missing\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$Subtype\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/FileAttachment.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Type\\.$#" + count: 2 + path: library/Zend/Pdf/Annotation/FileAttachment.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Subtype\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/FileAttachment.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Rect\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/FileAttachment.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$F\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/FileAttachment.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$FS\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/FileAttachment.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$Subtype\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Link.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Type\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Link.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Subtype\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Link.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Rect\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Link.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Dest\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Link.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$A\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Link.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Dest\\.$#" + count: 3 + path: library/Zend/Pdf/Annotation/Link.php + + - + message: "#^Variable \\$destination might not be defined\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Link.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$A\\.$#" + count: 4 + path: library/Zend/Pdf/Annotation/Link.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$Subtype\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Markup.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Type\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Markup.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Subtype\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Markup.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Rect\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Markup.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Contents\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Markup.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$QuadPoints\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Markup.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$Subtype\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Text.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Type\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Text.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Subtype\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Text.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Rect\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Text.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Contents\\.$#" + count: 1 + path: library/Zend/Pdf/Annotation/Text.php + + - + message: "#^Property Zend_Pdf_Canvas\\:\\:\\$_resources has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas.php + + - + message: "#^Method Zend_Pdf_Canvas\\:\\:_addProcSet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas.php + + - + message: "#^Method Zend_Pdf_Canvas\\:\\:getContents\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas.php + + - + message: "#^Method Zend_Pdf_Canvas_Abstract\\:\\:_addProcSet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Abstract.php + + - + message: "#^Default value of the parameter \\#2 \\$phase \\(0\\) of method Zend_Pdf_Canvas_Abstract\\:\\:setLineDashingPattern\\(\\) is incompatible with type array\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Abstract.php + + - + message: "#^Parameter \\#1 \\$val of class Zend_Pdf_Element_Numeric constructor expects float\\|int\\|string, array\\|int given\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Abstract.php + + - + message: "#^Access to an undefined property Zend_Pdf_Canvas_Abstract\\:\\:\\$_dictionary\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Abstract.php + + - + message: "#^Method Zend_Pdf_Style\\:\\:instructions\\(\\) invoked with 1 parameter, 0 required\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Abstract.php + + - + message: "#^Method Zend_Pdf_Canvas_Abstract\\:\\:getFont\\(\\) should return Zend_Pdf_Resource_Font but returns Zend_Pdf_Resource_Font\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Abstract.php + + - + message: "#^Method Zend_Pdf_Canvas_Abstract\\:\\:getStyle\\(\\) should return Zend_Pdf_Style but returns Zend_Pdf_Style\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Abstract.php + + - + message: "#^Parameter \\#1 \\$x of function fmod expects float, float\\|null given\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Abstract.php + + - + message: "#^Variable \\$path might not be defined\\.$#" + count: 4 + path: library/Zend/Pdf/Canvas/Abstract.php + + - + message: "#^Variable \\$endAngle might not be defined\\.$#" + count: 6 + path: library/Zend/Pdf/Canvas/Abstract.php + + - + message: "#^Parameter \\$box of method Zend_Pdf_Canvas_Abstract\\:\\:drawLayoutBox\\(\\) has invalid typehint type Zend_Pdf_Element_LayoutBox\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Abstract.php + + - + message: "#^Unary operation \"\\-\" on float\\|int\\|string results in an error\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Abstract.php + + - + message: "#^Method Zend_Pdf_Canvas_Interface\\:\\:getContents\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Interface.php + + - + message: "#^Default value of the parameter \\#2 \\$phase \\(0\\) of method Zend_Pdf_Canvas_Interface\\:\\:setLineDashingPattern\\(\\) is incompatible with type array\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Interface.php + + - + message: "#^Parameter \\$box of method Zend_Pdf_Canvas_Interface\\:\\:drawLayoutBox\\(\\) has invalid typehint type Zend_Pdf_Element_LayoutBox\\.$#" + count: 1 + path: library/Zend/Pdf/Canvas/Interface.php + + - + message: "#^Variable \\$subtableIndex might not be defined\\.$#" + count: 12 + path: library/Zend/Pdf/Cmap/SegmentToDelta.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$items\\.$#" + count: 2 + path: library/Zend/Pdf/Destination.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 9 + path: library/Zend/Pdf/Destination.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$items\\.$#" + count: 2 + path: library/Zend/Pdf/Destination/Explicit.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 3 + path: library/Zend/Pdf/Destination/Explicit.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$items\\.$#" + count: 2 + path: library/Zend/Pdf/Destination/FitBoundingBoxHorizontally.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$items\\.$#" + count: 2 + path: library/Zend/Pdf/Destination/FitBoundingBoxVertically.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$items\\.$#" + count: 2 + path: library/Zend/Pdf/Destination/FitHorizontally.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$items\\.$#" + count: 8 + path: library/Zend/Pdf/Destination/FitRectangle.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$items\\.$#" + count: 2 + path: library/Zend/Pdf/Destination/FitVertically.php + + - + message: "#^Property Zend_Pdf_Destination_Named\\:\\:\\$_nameElement \\(Zend_Pdf_Element_Name\\|Zend_Pdf_Element_String\\) does not accept Zend_Pdf_Element\\.$#" + count: 1 + path: library/Zend/Pdf/Destination/Named.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$items\\.$#" + count: 9 + path: library/Zend/Pdf/Destination/Zoom.php + + - + message: "#^Strict comparison using \\=\\=\\= between float and null will always evaluate to false\\.$#" + count: 3 + path: library/Zend/Pdf/Destination/Zoom.php + + - + message: "#^Method Zend_Pdf_Element\\:\\:makeClone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element.php + + - + message: "#^Method Zend_Pdf_Element\\:\\:setParentObject\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element.php + + - + message: "#^Method Zend_Pdf_Element\\:\\:touch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element.php + + - + message: "#^Method Zend_Pdf_Element\\:\\:cleanUp\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$value\\.$#" + count: 1 + path: library/Zend/Pdf/Element.php + + - + message: "#^Method Zend_Pdf_Element_Array\\:\\:__get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Array.php + + - + message: "#^Method Zend_Pdf_Element_Array\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Array.php + + - + message: "#^Method Zend_Pdf_Element_Array\\:\\:makeClone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Array.php + + - + message: "#^Method Zend_Pdf_Element_Array\\:\\:setParentObject\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Array.php + + - + message: "#^Method Zend_Pdf_Element_Dictionary\\:\\:add\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Dictionary.php + + - + message: "#^Method Zend_Pdf_Element_Dictionary\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Dictionary.php + + - + message: "#^Call to an undefined method object\\:\\:toString\\(\\)\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Dictionary.php + + - + message: "#^Method Zend_Pdf_Element_Dictionary\\:\\:makeClone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Dictionary.php + + - + message: "#^Method Zend_Pdf_Element_Dictionary\\:\\:setParentObject\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Dictionary.php + + - + message: "#^Parameter \\#1 \\$ascii of function chr expects int, string given\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Name.php + + - + message: "#^Cannot call method getType\\(\\) on Zend_Pdf_Element\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object.php + + - + message: "#^Cannot call method toString\\(\\) on Zend_Pdf_Element\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object.php + + - + message: "#^Method Zend_Pdf_Element_Object\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(Zend_Pdf_Element\\|null, string\\) given\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object.php + + - + message: "#^Method Zend_Pdf_Element_Object\\:\\:makeClone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object.php + + - + message: "#^Cannot call method makeClone\\(\\) on Zend_Pdf_Element\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object.php + + - + message: "#^Method Zend_Pdf_Element_Object\\:\\:touch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object.php + + - + message: "#^Method Zend_Pdf_Element_Object\\:\\:cleanUp\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object.php + + - + message: "#^Cannot call method toPhp\\(\\) on Zend_Pdf_Element\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Length\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Cannot access property \\$Filter on Zend_Pdf_Element_Dictionary\\|null\\.$#" + count: 5 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Cannot access property \\$DecodeParms on Zend_Pdf_Element_Dictionary\\|null\\.$#" + count: 8 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Cannot access property \\$F on Zend_Pdf_Element_Dictionary\\|null\\.$#" + count: 2 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Cannot access property \\$FFilter on Zend_Pdf_Element_Dictionary\\|null\\.$#" + count: 4 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Cannot access property \\$FDecodeParms on Zend_Pdf_Element_Dictionary\\|null\\.$#" + count: 8 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Method Zend_Pdf_Element_Object_Stream\\:\\:_decodeStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Cannot access property \\$value on Zend_Pdf_Element\\|null\\.$#" + count: 7 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Method Zend_Pdf_Element_Object_Stream\\:\\:_encodeStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Offset 'Filter' does not exist on array\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Offset 'DecodeParms' does not exist on array\\|null\\.$#" + count: 2 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Method Zend_Pdf_Element_Object_Stream\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Method Zend_Pdf_Element_Object_Stream\\:\\:skipFilters\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Method Zend_Pdf_Element_Object_Stream\\:\\:makeClone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Cannot call method makeClone\\(\\) on Zend_Pdf_Element_Dictionary\\|null\\.$#" + count: 2 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Cannot call method makeClone\\(\\) on Zend_Pdf_Element\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Cannot call method length\\(\\) on Zend_Pdf_Element\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object_Stream\\:\\:\\$dictionary\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Cannot call method toString\\(\\) on Zend_Pdf_Element\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Method Zend_Pdf_Element_Object_Stream\\:\\:cleanUp\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Object/Stream.php + + - + message: "#^Method Zend_Pdf_Element_Reference\\:\\:_dereference\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Reference.php + + - + message: "#^Parameter \\#1 \\$offset of method Zend_Pdf_StringParser\\:\\:getObject\\(\\) expects int, int\\|null given\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Reference.php + + - + message: "#^Strict comparison using \\=\\=\\= between Zend_Pdf_Element_Null\\|Zend_Pdf_Element_Object and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Reference.php + + - + message: "#^Method Zend_Pdf_Element_Reference\\:\\:makeClone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Reference.php + + - + message: "#^Method Zend_Pdf_Element_Reference\\:\\:touch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Reference.php + + - + message: "#^Method Zend_Pdf_Element_Reference\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Reference.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(mixed, string\\) given\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Reference.php + + - + message: "#^Method Zend_Pdf_Element_Reference\\:\\:cleanUp\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Reference.php + + - + message: "#^Method Zend_Pdf_Element_Reference_Table\\:\\:addReference\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Reference/Table.php + + - + message: "#^Method Zend_Pdf_Element_Reference_Table\\:\\:setParent\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Reference/Table.php + + - + message: "#^Property Zend_Pdf_Element_Stream\\:\\:\\$value \\(Zend_Memory_Container\\) does not accept Zend_Memory_Container_Interface\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Stream.php + + - + message: "#^Method Zend_Pdf_Element_Stream\\:\\:clear\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Stream.php + + - + message: "#^Method Zend_Pdf_Element_Stream\\:\\:append\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Stream.php + + - + message: "#^Method Zend_Pdf_Element_Stream\\:\\:makeClone\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Element/Stream.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Pdf/Element/String/Binary.php + + - + message: "#^Method Zend_Pdf_ElementFactory\\:\\:close\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Argument of an invalid type array\\|null supplied for foreach, only iterables are supported\\.$#" + count: 7 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Method Zend_Pdf_ElementFactory\\:\\:setObjectCount\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Method Zend_Pdf_ElementFactory\\:\\:attach\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Access to an undefined property Zend_Pdf_ElementFactory_Interface\\:\\:\\$_factoryId\\.$#" + count: 4 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Method Zend_Pdf_ElementFactory\\:\\:cleanEnumerationShiftCache\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Method Zend_Pdf_ElementFactory\\:\\:markAsModified\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Method Zend_Pdf_ElementFactory\\:\\:remove\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Call to an undefined method Zend_Pdf_Element_Object\\:\\:compareFactory\\(\\)\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Cannot call method attach\\(\\) on SplObjectStorage\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Parameter \\#1 \\$array_arg of function ksort expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Cannot call method contains\\(\\) on SplObjectStorage\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Method Zend_Pdf_ElementFactory\\:\\:registerObject\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\|null given\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory.php + + - + message: "#^Method Zend_Pdf_ElementFactory_Interface\\:\\:close\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Interface.php + + - + message: "#^Method Zend_Pdf_ElementFactory_Interface\\:\\:setObjectCount\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Interface.php + + - + message: "#^Method Zend_Pdf_ElementFactory_Interface\\:\\:attach\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Interface.php + + - + message: "#^Method Zend_Pdf_ElementFactory_Interface\\:\\:markAsModified\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Interface.php + + - + message: "#^Method Zend_Pdf_ElementFactory_Interface\\:\\:remove\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Interface.php + + - + message: "#^Cannot call method close\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method getFactory\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Method Zend_Pdf_ElementFactory_Proxy\\:\\:close\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method resolve\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method getId\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Method Zend_Pdf_ElementFactory_Proxy\\:\\:setObjectCount\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method setObjectCount\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method getObjectCount\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Method Zend_Pdf_ElementFactory_Proxy\\:\\:attach\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method attach\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method calculateShift\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method cleanEnumerationShiftCache\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method getEnumerationShift\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Method Zend_Pdf_ElementFactory_Proxy\\:\\:markAsModified\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method markAsModified\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Method Zend_Pdf_ElementFactory_Proxy\\:\\:remove\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method remove\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method newObject\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method newStreamObject\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method listModifiedObjects\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Cannot call method isModified\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/ElementFactory/Proxy.php + + - + message: "#^Method Zend_Pdf_FileParser\\:\\:screen\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Method Zend_Pdf_FileParser\\:\\:parse\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Method Zend_Pdf_FileParser\\:\\:getDataSource\\(\\) should return Zend_Pdf_FileParserDataSource but returns Zend_Pdf_FileParserDataSource\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Method Zend_Pdf_FileParser\\:\\:moveToOffset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Cannot call method moveToOffset\\(\\) on Zend_Pdf_FileParserDataSource\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Method Zend_Pdf_FileParser\\:\\:getOffset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Cannot call method getOffset\\(\\) on Zend_Pdf_FileParserDataSource\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Method Zend_Pdf_FileParser\\:\\:getSize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Cannot call method getSize\\(\\) on Zend_Pdf_FileParserDataSource\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Cannot call method readBytes\\(\\) on Zend_Pdf_FileParserDataSource\\|null\\.$#" + count: 6 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Method Zend_Pdf_FileParser\\:\\:skipBytes\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Cannot call method skipBytes\\(\\) on Zend_Pdf_FileParserDataSource\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Method Zend_Pdf_FileParser\\:\\:readStringUTF16\\(\\) should return string but returns string\\|false\\.$#" + count: 2 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Method Zend_Pdf_FileParser\\:\\:readStringMacRoman\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Method Zend_Pdf_FileParser\\:\\:readStringPascal\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser.php + + - + message: "#^Method Zend_Pdf_FileParser_Font\\:\\:writeDebug\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font.php + + - + message: "#^Method Zend_Pdf_FileParser_Font\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font.php + + - + message: "#^Method Zend_Pdf_FileParser_Font\\:\\:_debugLog\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font.php + + - + message: "#^PHPDoc tag @param references unknown parameter\\: \\$args$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType\\:\\:screen\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType\\:\\:parse\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType\\:\\:_parseTableDirectory\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Cannot call method getSize\\(\\) on Zend_Pdf_FileParserDataSource\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType\\:\\:_parseHeadTable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType\\:\\:_parseNameTable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType\\:\\:_parsePostTable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType\\:\\:_parseHheaTable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType\\:\\:_parseMaxpTable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType\\:\\:_parseOs2Table\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType\\:\\:_parseHmtxTable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType\\:\\:_parseCmapTable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Variable \\$cmapLength might not be defined\\.$#" + count: 2 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Variable \\$cmapOffset might not be defined\\.$#" + count: 2 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType\\:\\:_jumpToTable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType_TrueType\\:\\:screen\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType/TrueType.php + + - + message: "#^Method Zend_Pdf_FileParser_Font_OpenType_TrueType\\:\\:parse\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Font/OpenType/TrueType.php + + - + message: "#^Property Zend_Pdf_FileParser_Image_Png\\:\\:\\$_isPNG has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Property Zend_Pdf_FileParser_Image_Png\\:\\:\\$_width has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Property Zend_Pdf_FileParser_Image_Png\\:\\:\\$_height has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Property Zend_Pdf_FileParser_Image_Png\\:\\:\\$_bits has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Property Zend_Pdf_FileParser_Image_Png\\:\\:\\$_color has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Property Zend_Pdf_FileParser_Image_Png\\:\\:\\$_compression has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Property Zend_Pdf_FileParser_Image_Png\\:\\:\\$_preFilter has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Property Zend_Pdf_FileParser_Image_Png\\:\\:\\$_interlacing has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Property Zend_Pdf_FileParser_Image_Png\\:\\:\\$_imageData has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Property Zend_Pdf_FileParser_Image_Png\\:\\:\\$_paletteData has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Property Zend_Pdf_FileParser_Image_Png\\:\\:\\$_transparencyData has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:getWidth\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:getHeight\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:getBitDepth\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:getColorSpace\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:getCompressionStrategy\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:getPaethFilter\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:getInterlacingMode\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:getRawImageData\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:getRawPaletteData\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:getRawTransparencyData\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:screen\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:parse\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_parseSignature\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_checkSignature\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_parseChunks\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_parseIHDRChunk\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_parseIDATChunk\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_parseIDATChunk\\(\\) has parameter \\$chunkLength with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_parseIDATChunk\\(\\) has parameter \\$chunkOffset with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_parsePLTEChunk\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_parsePLTEChunk\\(\\) has parameter \\$chunkLength with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_parsePLTEChunk\\(\\) has parameter \\$chunkOffset with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_parseTRNSChunk\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_parseTRNSChunk\\(\\) has parameter \\$chunkLength with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParser_Image_Png\\:\\:_parseTRNSChunk\\(\\) has parameter \\$chunkOffset with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Pdf/FileParser/Image/Png.php + + - + message: "#^Method Zend_Pdf_FileParserDataSource\\:\\:moveToOffset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParserDataSource.php + + - + message: "#^Method Zend_Pdf_FileParserDataSource\\:\\:skipBytes\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParserDataSource.php + + - + message: "#^Property Zend_Pdf_FileParserDataSource\\:\\:\\$_size \\(int\\) does not accept int\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/FileParserDataSource/File.php + + - + message: "#^Property Zend_Pdf_FileParserDataSource_File\\:\\:\\$_fileResource \\(resource\\) does not accept resource\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/FileParserDataSource/File.php + + - + message: "#^Method Zend_Pdf_FileParserDataSource_File\\:\\:readAllBytes\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/FileParserDataSource/File.php + + - + message: "#^Method Zend_Pdf_FileParserDataSource_File\\:\\:moveToOffset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/FileParserDataSource/File.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Pdf/Filter/Ascii85.php + + - + message: "#^Variable \\$hexCodeHigh might not be defined\\.$#" + count: 2 + path: library/Zend/Pdf/Filter/AsciiHex.php + + - + message: "#^Parameter \\#1 \\$ascii of function chr expects int, float given\\.$#" + count: 1 + path: library/Zend/Pdf/Filter/Compression.php + + - + message: "#^Parameter \\#2 \\$num of function array_fill expects int, float\\|int given\\.$#" + count: 2 + path: library/Zend/Pdf/Filter/Compression.php + + - + message: "#^Parameter \\#3 \\$length of function substr expects int, float\\|int given\\.$#" + count: 1 + path: library/Zend/Pdf/Filter/Compression.php + + - + message: "#^Parameter \\#2 \\$newvalue of function ini_set expects string, string\\|false given\\.$#" + count: 4 + path: library/Zend/Pdf/Filter/Compression/Flate.php + + - + message: "#^Undefined variable\\: \\$php_errormsg$#" + count: 1 + path: library/Zend/Pdf/Filter/Compression/Flate.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Pdf/Filter/Compression/Lzw.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 3 + path: library/Zend/Pdf/Image.php + + - + message: "#^Parameter \\#1 \\$imageFileName of class Zend_Pdf_Resource_Image_Png constructor expects string, Zend_Pdf_FileParser_Image_Png given\\.$#" + count: 1 + path: library/Zend/Pdf/Image.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$Kids\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:current\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:next\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:key\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:valid\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:rewind\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:offsetExists\\(\\) has parameter \\$offset with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:offsetGet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:offsetGet\\(\\) has parameter \\$offset with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:offsetSet\\(\\) has parameter \\$offset with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:offsetSet\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:offsetUnset\\(\\) has parameter \\$offset with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:clear\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Method Zend_Pdf_NameTree\\:\\:count\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/NameTree.php + + - + message: "#^Access to an undefined property Zend_Pdf_Outline\\:\\:\\$_title\\.$#" + count: 1 + path: library/Zend/Pdf/Outline.php + + - + message: "#^Access to an undefined property Zend_Pdf_Outline\\:\\:\\$_color\\.$#" + count: 1 + path: library/Zend/Pdf/Outline.php + + - + message: "#^Access to an undefined property Zend_Pdf_Outline\\:\\:\\$_italic\\.$#" + count: 1 + path: library/Zend/Pdf/Outline.php + + - + message: "#^Access to an undefined property Zend_Pdf_Outline\\:\\:\\$_bold\\.$#" + count: 1 + path: library/Zend/Pdf/Outline.php + + - + message: "#^Access to an undefined property Zend_Pdf_Outline\\:\\:\\$_target\\.$#" + count: 1 + path: library/Zend/Pdf/Outline.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Pdf/Outline.php + + - + message: "#^Method Zend_Pdf_Outline\\:\\:create\\(\\) has parameter \\$param1 with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Outline.php + + - + message: "#^Method Zend_Pdf_Outline\\:\\:create\\(\\) has parameter \\$param2 with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Outline.php + + - + message: "#^Method Zend_Pdf_Outline\\:\\:key\\(\\) should return int but returns int\\|string\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Outline.php + + - + message: "#^Method Zend_Pdf_Outline\\:\\:next\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Outline.php + + - + message: "#^Method Zend_Pdf_Outline\\:\\:rewind\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Outline.php + + - + message: "#^Parameter \\#1 \\$resource of class Zend_Pdf_Destination_Named constructor expects Zend_Pdf_Element, string given\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Result of \\|\\| is always true\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Property Zend_Pdf_Outline_Created\\:\\:\\$_target \\(Zend_Pdf_Action\\|Zend_Pdf_Destination\\) does not accept Zend_Pdf_Target\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Title\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Strict comparison using \\=\\=\\= between Zend_Pdf_Target and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Dest\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$A\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$C\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$F\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Parent\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Prev\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$First\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Last\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Count\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Created.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Title\\.$#" + count: 3 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Count\\.$#" + count: 3 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$F\\.$#" + count: 4 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Method Zend_Pdf_Outline_Loaded\\:\\:isItalic\\(\\) should return bool but returns int\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Method Zend_Pdf_Outline_Loaded\\:\\:isBold\\(\\) should return bool but returns int\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$C\\.$#" + count: 3 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Strict comparison using \\=\\=\\= between Zend_Pdf_Color_Rgb and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Dest\\.$#" + count: 4 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$A\\.$#" + count: 5 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Property Zend_Pdf_Outline_Loaded\\:\\:\\$_outlineDictionary \\(Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\) does not accept Zend_Pdf_Element\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$Count\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$First\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Parent\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Prev\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Next\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$First\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Last\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Method Zend_Pdf_Outline_Loaded\\:\\:dump\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Method Zend_Pdf_Outline_Loaded\\:\\:dump\\(\\) has parameter \\$level with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Right side of \\|\\| is always true\\.$#" + count: 1 + path: library/Zend/Pdf/Outline/Loaded.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 2 + path: library/Zend/Pdf/Page.php + + - + message: "#^Call to an undefined method Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:getKeys\\(\\)\\.$#" + count: 3 + path: library/Zend/Pdf/Page.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Contents\\.$#" + count: 2 + path: library/Zend/Pdf/Page.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Contents\\.$#" + count: 11 + path: library/Zend/Pdf/Page.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Type\\.$#" + count: 1 + path: library/Zend/Pdf/Page.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$LastModified\\.$#" + count: 1 + path: library/Zend/Pdf/Page.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Resources\\.$#" + count: 1 + path: library/Zend/Pdf/Page.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$MediaBox\\.$#" + count: 1 + path: library/Zend/Pdf/Page.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Resources\\.$#" + count: 17 + path: library/Zend/Pdf/Page.php + + - + message: "#^Method Zend_Pdf_Page\\:\\:_addProcSet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Page.php + + - + message: "#^Method Zend_Pdf_Page\\:\\:getContents\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Page.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$MediaBox\\.$#" + count: 4 + path: library/Zend/Pdf/Page.php + + - + message: "#^Method Zend_Pdf_Page\\:\\:flush\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Page.php + + - + message: "#^Method Zend_Pdf_Page\\:\\:render\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Page.php + + - + message: "#^Method Zend_Pdf_Page\\:\\:extractFont\\(\\) has parameter \\$fontName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Page.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Page.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\|Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$Annots\\.$#" + count: 1 + path: library/Zend/Pdf/Page.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\|Zend_Pdf_Element_Reference\\:\\:\\$P\\.$#" + count: 1 + path: library/Zend/Pdf/Page.php + + - + message: "#^Strict comparison using \\=\\=\\= between int and false will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Access to an undefined property Zend_Pdf_Parser\\:\\:\\$_refTable\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Parameter \\#2 \\$offset of method Zend_Pdf_Element_Reference_Table\\:\\:addReference\\(\\) expects int, string given\\.$#" + count: 2 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object_Stream\\:\\:\\$dictionary\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object_Stream\\:\\:\\$value\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Prev\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Numeric\\|Zend_Pdf_Element_Reference\\:\\:\\$value\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Parameter \\#1 \\$offset of method Zend_Pdf_Parser\\:\\:_loadXRefTable\\(\\) expects int, float\\|int\\|string given\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Call to an undefined method Zend_Pdf_Trailer\\:\\:getRefTable\\(\\)\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Access to an undefined property Zend_Pdf_Trailer_Keeper\\:\\:\\$Prev\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Parameter \\#2 \\$length of function fread expects int, int\\<1, max\\>\\|false given\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Property Zend_Pdf_StringParser\\:\\:\\$offset \\(int\\) does not accept int\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Parameter \\#1 \\$offset of method Zend_Pdf_Parser\\:\\:_loadXRefTable\\(\\) expects int, string given\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Access to an undefined property Zend_Pdf_Trailer_Keeper\\:\\:\\$Size\\.$#" + count: 1 + path: library/Zend/Pdf/Parser.php + + - + message: "#^Property Zend_Pdf_RecursivelyIteratableObjectsContainer\\:\\:\\$_objects has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php + + - + message: "#^Method Zend_Pdf_RecursivelyIteratableObjectsContainer\\:\\:current\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php + + - + message: "#^Method Zend_Pdf_RecursivelyIteratableObjectsContainer\\:\\:key\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php + + - + message: "#^Method Zend_Pdf_RecursivelyIteratableObjectsContainer\\:\\:next\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php + + - + message: "#^Method Zend_Pdf_RecursivelyIteratableObjectsContainer\\:\\:rewind\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php + + - + message: "#^Method Zend_Pdf_RecursivelyIteratableObjectsContainer\\:\\:valid\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php + + - + message: "#^Method Zend_Pdf_RecursivelyIteratableObjectsContainer\\:\\:getChildren\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php + + - + message: "#^Method Zend_Pdf_RecursivelyIteratableObjectsContainer\\:\\:hasChildren\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php + + - + message: "#^Method Zend_Pdf_RecursivelyIteratableObjectsContainer\\:\\:count\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/RecursivelyIteratableObjectsContainer.php + + - + message: "#^Method Zend_Pdf_Resource\\:\\:cloneResource\\(\\) should return Zend_Pdf_Page but return statement is missing\\.$#" + count: 1 + path: library/Zend/Pdf/Resource.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/ContentStream.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$value\\.$#" + count: 3 + path: library/Zend/Pdf/Resource/ContentStream.php + + - + message: "#^Method Zend_Pdf_Resource_ContentStream\\:\\:flush\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/ContentStream.php + + - + message: "#^Method Zend_Pdf_Resource_Extractor\\:\\:clonePage\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Extractor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Type\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font.php + + - + message: "#^Method Zend_Pdf_Resource_Font\\:\\:__toString\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font.php + + - + message: "#^Method Zend_Pdf_Resource_Font\\:\\:getUnderlinePosition\\(\\) should return int but returns int\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font.php + + - + message: "#^Method Zend_Pdf_Resource_Font\\:\\:getUnderlineThickness\\(\\) should return int but returns int\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font.php + + - + message: "#^Method Zend_Pdf_Resource_Font\\:\\:getStrikePosition\\(\\) should return int but returns int\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font.php + + - + message: "#^Method Zend_Pdf_Resource_Font\\:\\:getStrikeThickness\\(\\) should return int but returns int\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font.php + + - + message: "#^Method Zend_Pdf_Resource_Font\\:\\:getUnitsPerEm\\(\\) should return int but returns int\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font.php + + - + message: "#^Method Zend_Pdf_Resource_Font\\:\\:getLineGap\\(\\) should return int but returns int\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font.php + + - + message: "#^Method Zend_Pdf_Resource_Font\\:\\:toEmSpace\\(\\) should return int but returns float\\|int\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_CidFont\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Parameter \\#1 \\$val of class Zend_Pdf_Element_Name constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$DW\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Pdf_Resource_Font\\:\\:toEmSpace\\(\\) expects int, int\\|string\\|null given\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Binary operation \"\\+\" between int\\|string and 1 results in an error\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Variable \\$charCodesSequense might not be defined\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Variable \\$sequenceStartCode might not be defined\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$W\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Registry\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Ordering\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Supplement\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$CIDSystemInfo\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Parameter \\#1 \\$str of function iconv_strlen expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Cannot access offset int on string\\|false\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Font/CidFont.php + + - + message: "#^Method Zend_Pdf_Resource_Font_CidFont\\:\\:__construct\\(\\) invoked with 2 parameters, 1 required\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont/TrueType.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Subtype\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont/TrueType.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$FontDescriptor\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont/TrueType.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$CIDToGIDMap\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/CidFont/TrueType.php + + - + message: "#^Method Zend_Pdf_Resource_Font_Extracted\\:\\:encodeString\\(\\) should return string but returns string\\|false\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Font/Extracted.php + + - + message: "#^Method Zend_Pdf_Resource_Font_Extracted\\:\\:decodeString\\(\\) should return string but returns string\\|false\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Font/Extracted.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Type\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$FontName\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Flags\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$FontBBox\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$ItalicAngle\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Ascent\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Descent\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$CapHeight\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$StemV\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$MissingWidth\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Class Zend_Pdf_FileParser_Font_OpenType_Type1 not found\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$FontFile\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$FontFile2\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$FontFile3\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/FontDescriptor.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Encoding\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple.php + + - + message: "#^Parameter \\#1 \\$str of function iconv_strlen expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Font/Simple.php + + - + message: "#^Cannot access offset int on string\\|false\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Font/Simple.php + + - + message: "#^Method Zend_Pdf_Resource_Font_Simple\\:\\:encodeString\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple.php + + - + message: "#^Method Zend_Pdf_Resource_Font_Simple\\:\\:decodeString\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Parsed\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Parsed.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Parsed.php + + - + message: "#^Parameter \\#1 \\$val of class Zend_Pdf_Element_Name constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Parsed.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$FirstChar\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Parsed.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$LastChar\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Parsed.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Widths\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Parsed.php + + - + message: "#^Method Zend_Pdf_Resource_Font_Simple_Parsed\\:\\:__construct\\(\\) invoked with 2 parameters, 1 required\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Parsed/TrueType.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Subtype\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Parsed/TrueType.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$FontDescriptor\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Parsed/TrueType.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Subtype\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_Courier\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/Courier.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/Courier.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_CourierBold\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBold.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBold.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_CourierBoldOblique\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBoldOblique.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/CourierBoldOblique.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_CourierOblique\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/CourierOblique.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/CourierOblique.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_Helvetica\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/Helvetica.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/Helvetica.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_HelveticaBold\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBold.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBold.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_HelveticaBoldOblique\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBoldOblique.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaBoldOblique.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_HelveticaOblique\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaOblique.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/HelveticaOblique.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_Symbol\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Encoding\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php + + - + message: "#^Cannot access offset int on string\\|false\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php + + - + message: "#^Method Zend_Pdf_Resource_Font_Simple_Standard_Symbol\\:\\:decodeString\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php + + - + message: "#^Parameter \\#1 \\$string of method Zend_Pdf_Resource_Font_Simple_Standard_Symbol\\:\\:decodeString\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/Symbol.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_TimesBold\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBold.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBold.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_TimesBoldItalic\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBoldItalic.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/TimesBoldItalic.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_TimesItalic\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/TimesItalic.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/TimesItalic.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_TimesRoman\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/TimesRoman.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/TimesRoman.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Simple_Standard_ZapfDingbats\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Encoding\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php + + - + message: "#^Cannot access offset int on string\\|false\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php + + - + message: "#^Method Zend_Pdf_Resource_Font_Simple_Standard_ZapfDingbats\\:\\:decodeString\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php + + - + message: "#^Parameter \\#1 \\$string of method Zend_Pdf_Resource_Font_Simple_Standard_ZapfDingbats\\:\\:decodeString\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Simple/Standard/ZapfDingbats.php + + - + message: "#^Access to an undefined property Zend_Pdf_Resource_Font_Type0\\:\\:\\$_isMonospaced\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Type0.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Subtype\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Type0.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BaseFont\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Font/Type0.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$DescendantFonts\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Type0.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$Encoding\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Type0.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$ToUnicode\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Type0.php + + - + message: "#^Method Zend_Pdf_Resource_Font_Type0\\:\\:encodeString\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Type0.php + + - + message: "#^Method Zend_Pdf_Resource_Font_Type0\\:\\:decodeString\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Font/Type0.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Type\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/GraphicsState.php + + - + message: "#^Variable \\$gsDictionary might not be defined\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/GraphicsState.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$BM\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/GraphicsState.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$CA\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/GraphicsState.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$ca\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/GraphicsState.php + + - + message: "#^Method Zend_Pdf_Resource_GraphicsState\\:\\:setAlpha\\(\\) should return Zend_Pdf_Canvas_Interface but return statement is missing\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/GraphicsState.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Jpeg\\:\\:\\$_width has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Jpeg.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Jpeg\\:\\:\\$_height has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Jpeg.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Jpeg\\:\\:\\$_imageProperties has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Jpeg.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$dictionary\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Jpeg.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$value\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Jpeg.php + + - + message: "#^Parameter \\#2 \\$length of function fread expects int, int\\<1, max\\>\\|false given\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Jpeg.php + + - + message: "#^Call to an undefined method Zend_Pdf_Element_Object\\:\\:skipFilters\\(\\)\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Jpeg.php + + - + message: "#^Method Zend_Pdf_Resource_Image_Jpeg\\:\\:getPixelWidth\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Jpeg.php + + - + message: "#^Method Zend_Pdf_Resource_Image_Jpeg\\:\\:getPixelHeight\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Jpeg.php + + - + message: "#^Method Zend_Pdf_Resource_Image_Jpeg\\:\\:getProperties\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Jpeg.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Png\\:\\:\\$_width has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Png\\:\\:\\$_height has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Png\\:\\:\\$_imageProperties has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Parameter \\#2 \\$data of function unpack expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Parameter \\#1 \\$character of function ord expects string, string\\|false given\\.$#" + count: 5 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Parameter \\#1 \\$str of function substr expects string, string\\|false given\\.$#" + count: 4 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Parameter \\#1 \\$haystack of function strpos expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Predictor\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Columns\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Colors\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$BitsPerComponent\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object_Stream\\:\\:\\$value\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$dictionary\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$value\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Call to an undefined method Zend_Pdf_Element_Object\\:\\:skipFilters\\(\\)\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Method Zend_Pdf_Resource_Image_Png\\:\\:getPixelWidth\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Method Zend_Pdf_Resource_Image_Png\\:\\:getPixelHeight\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Method Zend_Pdf_Resource_Image_Png\\:\\:getProperties\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Png.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_width has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_height has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_imageProperties has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_endianType has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_fileSize has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_bitsPerSample has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_compression has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_filter has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_colorCode has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_whiteIsZero has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_blackIsZero has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_colorSpace has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_imageDataOffset has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Property Zend_Pdf_Resource_Image_Tiff\\:\\:\\$_imageDataLength has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Method Zend_Pdf_Resource_Image_Tiff\\:\\:unpackBytes\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 8 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Parameter \\#2 \\$bytes of method Zend_Pdf_Resource_Image_Tiff\\:\\:unpackBytes\\(\\) expects string, string\\|false given\\.$#" + count: 12 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Cannot access offset 'size' on array\\(0 \\=\\> int, 1 \\=\\> int, 2 \\=\\> int, 3 \\=\\> int, 4 \\=\\> int, 5 \\=\\> int, 6 \\=\\> int, 7 \\=\\> int, \\.\\.\\.\\)\\|false\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Variable \\$value might not be defined\\.$#" + count: 10 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Variable \\$refOffset might not be defined\\.$#" + count: 3 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Parameter \\#2 \\$offset of function fseek expects int, int\\|false given\\.$#" + count: 3 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Parameter \\#2 \\$data of function unpack expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$dictionary\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Object\\:\\:\\$value\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Call to an undefined method Zend_Pdf_Element_Object\\:\\:skipFilters\\(\\)\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Method Zend_Pdf_Resource_Image_Tiff\\:\\:getPixelWidth\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Method Zend_Pdf_Resource_Image_Tiff\\:\\:getPixelHeight\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Method Zend_Pdf_Resource_Image_Tiff\\:\\:getProperties\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/Image/Tiff.php + + - + message: "#^Method Zend_Pdf_Resource_ImageFactory\\:\\:factory\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/ImageFactory.php + + - + message: "#^Method Zend_Pdf_Resource_ImageFactory\\:\\:factory\\(\\) has parameter \\$filename with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Resource/ImageFactory.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 4 + path: library/Zend/Pdf/Resource/ImageFactory.php + + - + message: "#^Method Zend_Pdf_StringParser\\:\\:cleanUp\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/StringParser.php + + - + message: "#^Method Zend_Pdf_StringParser\\:\\:skipWhiteSpace\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/StringParser.php + + - + message: "#^Method Zend_Pdf_StringParser\\:\\:skipComment\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/StringParser.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 3 + path: library/Zend/Pdf/StringParser.php + + - + message: "#^Parameter \\#1 \\$version1 of function version_compare expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Pdf/StringParser.php + + - + message: "#^Method Zend_Pdf_StringParser\\:\\:readElement\\(\\) has parameter \\$nextLexeme with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/StringParser.php + + - + message: "#^Cannot call method resolve\\(\\) on Zend_Pdf_ElementFactory_Interface\\|null\\.$#" + count: 3 + path: library/Zend/Pdf/StringParser.php + + - + message: "#^Parameter \\#3 \\$context of class Zend_Pdf_Element_Reference constructor expects Zend_Pdf_Element_Reference_Context, Zend_Pdf_Element_Reference_Context\\|null given\\.$#" + count: 1 + path: library/Zend/Pdf/StringParser.php + + - + message: "#^Strict comparison using \\=\\=\\= between int and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Pdf/StringParser.php + + - + message: "#^Empty array passed to foreach\\.$#" + count: 2 + path: library/Zend/Pdf/StringParser.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element_Dictionary\\:\\:\\$Length\\.$#" + count: 1 + path: library/Zend/Pdf/StringParser.php + + - + message: "#^Method Zend_Pdf_StringParser\\:\\:setContext\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/StringParser.php + + - + message: "#^Method Zend_Pdf_Style\\:\\:setFillColor\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Style.php + + - + message: "#^Method Zend_Pdf_Style\\:\\:setLineColor\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Style.php + + - + message: "#^Method Zend_Pdf_Style\\:\\:setLineWidth\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Style.php + + - + message: "#^Default value of the parameter \\#2 \\$phase \\(0\\) of method Zend_Pdf_Style\\:\\:setLineDashingPattern\\(\\) is incompatible with type float\\.$#" + count: 1 + path: library/Zend/Pdf/Style.php + + - + message: "#^Method Zend_Pdf_Style\\:\\:setLineDashingPattern\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Style.php + + - + message: "#^Property Zend_Pdf_Style\\:\\:\\$_lineDashingPattern \\(array\\) does not accept array\\|int\\.$#" + count: 1 + path: library/Zend/Pdf/Style.php + + - + message: "#^Method Zend_Pdf_Style\\:\\:setFont\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Style.php + + - + message: "#^Method Zend_Pdf_Style\\:\\:setFontSize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Style.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$S\\.$#" + count: 1 + path: library/Zend/Pdf/Target.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$Type\\.$#" + count: 1 + path: library/Zend/Pdf/Target.php + + - + message: "#^Access to an undefined property Zend_Pdf_Element\\:\\:\\$D\\.$#" + count: 1 + path: library/Zend/Pdf/Target.php + + - + message: "#^Property Zend_Pdf_Trailer\\:\\:\\$_allowedKeys has no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Trailer.php + + - + message: "#^Method Zend_Pdf_Trailer\\:\\:_checkDictKey\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Trailer.php + + - + message: "#^Method Zend_Pdf_Trailer\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Trailer.php + + - + message: "#^Method Zend_Pdf_Trailer_Generator\\:\\:getPDFLength\\(\\) should return string but returns int\\.$#" + count: 1 + path: library/Zend/Pdf/Trailer/Generator.php + + - + message: "#^Property Zend_Pdf_Trailer_Keeper\\:\\:\\$_prev \\(Zend_Pdf_Trailer\\) does not accept Zend_Pdf_Trailer\\|null\\.$#" + count: 1 + path: library/Zend/Pdf/Trailer/Keeper.php + + - + message: "#^Method Zend_Pdf_Trailer_Keeper\\:\\:setPrev\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/Trailer/Keeper.php + + - + message: "#^Return type \\(int\\) of method Zend_Pdf_Trailer_Keeper\\:\\:getPDFLength\\(\\) should be compatible with return type \\(string\\) of method Zend_Pdf_Trailer\\:\\:getPDFLength\\(\\)$#" + count: 1 + path: library/Zend/Pdf/Trailer/Keeper.php + + - + message: "#^Method Zend_Pdf_Trailer_Keeper\\:\\:getLastFreeObject\\(\\) should return int but return statement is missing\\.$#" + count: 1 + path: library/Zend/Pdf/Trailer/Keeper.php + + - + message: "#^Method Zend_Pdf_UpdateInfoContainer\\:\\:__construct\\(\\) has parameter \\$dump with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/UpdateInfoContainer.php + + - + message: "#^Method Zend_Pdf_UpdateInfoContainer\\:\\:__construct\\(\\) has parameter \\$genNum with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/UpdateInfoContainer.php + + - + message: "#^Method Zend_Pdf_UpdateInfoContainer\\:\\:__construct\\(\\) has parameter \\$isFree with no typehint specified\\.$#" + count: 1 + path: library/Zend/Pdf/UpdateInfoContainer.php + + - + message: "#^Property Zend_Pdf_UpdateInfoContainer\\:\\:\\$_dump \\(string\\|Zend_Memory_Container\\|null\\) does not accept Zend_Memory_Container_Interface\\.$#" + count: 1 + path: library/Zend/Pdf/UpdateInfoContainer.php + + - + message: "#^Result of && is always false\\.$#" + count: 2 + path: library/Zend/Queue.php + + - + message: "#^Parameter \\#1 \\$object of function get_class expects object, class\\-string given\\.$#" + count: 1 + path: library/Zend/Queue.php + + - + message: "#^Variable \\$adapterName might not be defined\\.$#" + count: 1 + path: library/Zend/Queue.php + + - + message: "#^Cannot assign offset 'driverOptions' to array\\|string\\.$#" + count: 1 + path: library/Zend/Queue.php + + - + message: "#^Constructor of class Zend_Queue_Adapter_Activemq has an unused parameter \\$queue\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Activemq.php + + - + message: "#^Return type \\(void\\) of method Zend_Queue_Adapter_Activemq\\:\\:create\\(\\) should be compatible with return type \\(bool\\) of method Zend_Queue_Adapter_AdapterInterface\\:\\:create\\(\\)$#" + count: 2 + path: library/Zend/Queue/Adapter/Activemq.php + + - + message: "#^Return type \\(void\\) of method Zend_Queue_Adapter_Activemq\\:\\:delete\\(\\) should be compatible with return type \\(bool\\) of method Zend_Queue_Adapter_AdapterInterface\\:\\:delete\\(\\)$#" + count: 2 + path: library/Zend/Queue/Adapter/Activemq.php + + - + message: "#^Access to an undefined property Zend_Queue_Message\\:\\:\\$handle\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Activemq.php + + - + message: "#^Return type \\(void\\) of method Zend_Queue_Adapter_Activemq\\:\\:getQueues\\(\\) should be compatible with return type \\(array\\) of method Zend_Queue_Adapter_AdapterInterface\\:\\:getQueues\\(\\)$#" + count: 2 + path: library/Zend/Queue/Adapter/Activemq.php + + - + message: "#^Cannot call method getCommand\\(\\) on bool\\|Zend_Queue_Stomp_FrameInterface\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Activemq.php + + - + message: "#^Cannot call method getHeader\\(\\) on bool\\|Zend_Queue_Stomp_FrameInterface\\.$#" + count: 2 + path: library/Zend/Queue/Adapter/Activemq.php + + - + message: "#^Cannot call method getBody\\(\\) on bool\\|Zend_Queue_Stomp_FrameInterface\\.$#" + count: 2 + path: library/Zend/Queue/Adapter/Activemq.php + + - + message: "#^Parameter \\#2 \\$value of method Zend_Queue_Stomp_FrameInterface\\:\\:setHeader\\(\\) expects string, int given\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Activemq.php + + - + message: "#^Parameter \\#1 \\$prefix of function uniqid expects string, int given\\.$#" + count: 2 + path: library/Zend/Queue/Adapter/Array.php + + - + message: "#^Access to an undefined property Zend_Queue_Message\\:\\:\\$queue_name\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Array.php + + - + message: "#^Access to an undefined property Zend_Queue_Message\\:\\:\\$handle\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Array.php + + - + message: "#^Access to an undefined property Zend_Db_Table_Row_Abstract\\:\\:\\$queue_name\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Db.php + + - + message: "#^Access to an undefined property Zend_Db_Table_Row_Abstract\\:\\:\\$timeout\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Db.php + + - + message: "#^Cannot access property \\$queue_id on Zend_Db_Table_Row_Abstract\\|null\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Db.php + + - + message: "#^Cannot access property \\$queue_name on Zend_Db_Table_Row_Abstract\\|null\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Db.php + + - + message: "#^Access to an undefined property Zend_Db_Table_Row_Abstract\\:\\:\\$queue_id\\.$#" + count: 2 + path: library/Zend/Queue/Adapter/Db.php + + - + message: "#^Access to an undefined property Zend_Db_Table_Row_Abstract\\:\\:\\$created\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Db.php + + - + message: "#^Access to an undefined property Zend_Db_Table_Row_Abstract\\:\\:\\$body\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Db.php + + - + message: "#^Access to an undefined property Zend_Db_Table_Row_Abstract\\:\\:\\$md5\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Db.php + + - + message: "#^Parameter \\#1 \\$prefix of function uniqid expects string, int given\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Db.php + + - + message: "#^Access to an undefined property Zend_Queue_Message\\:\\:\\$handle\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Db.php + + - + message: "#^Parameter \\#1 \\$prefix of function uniqid expects string, int given\\.$#" + count: 2 + path: library/Zend/Queue/Adapter/Memcacheq.php + + - + message: "#^Property Zend_Queue_Adapter_Memcacheq\\:\\:\\$_socket \\(resource\\) does not accept resource\\|false\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Memcacheq.php + + - + message: "#^Strict comparison using \\=\\=\\= between resource and false will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Memcacheq.php + + - + message: "#^Undefined variable\\: \\$errno$#" + count: 1 + path: library/Zend/Queue/Adapter/Memcacheq.php + + - + message: "#^Undefined variable\\: \\$errstr$#" + count: 1 + path: library/Zend/Queue/Adapter/Memcacheq.php + + - + message: "#^Parameter \\#1 \\$str of function trim expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Memcacheq.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:isExists\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:isExists\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:create\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:create\\(\\) has parameter \\$timeout with no typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:delete\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:delete\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:getQueues\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:count\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:send\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:send\\(\\) has parameter \\$message with no typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:receive\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:receive\\(\\) has parameter \\$maxMessages with no typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:receive\\(\\) has parameter \\$timeout with no typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Method Zend_Queue_Adapter_Null\\:\\:deleteMessage\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/Null.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 2 + path: library/Zend/Queue/Adapter/PlatformJobQueue.php + + - + message: "#^If condition is always true\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/PlatformJobQueue.php + + - + message: "#^Return type \\(void\\) of method Zend_Queue_Adapter_PlatformJobQueue\\:\\:create\\(\\) should be compatible with return type \\(bool\\) of method Zend_Queue_Adapter_AdapterInterface\\:\\:create\\(\\)$#" + count: 2 + path: library/Zend/Queue/Adapter/PlatformJobQueue.php + + - + message: "#^Return type \\(void\\) of method Zend_Queue_Adapter_PlatformJobQueue\\:\\:delete\\(\\) should be compatible with return type \\(bool\\) of method Zend_Queue_Adapter_AdapterInterface\\:\\:delete\\(\\)$#" + count: 2 + path: library/Zend/Queue/Adapter/PlatformJobQueue.php + + - + message: "#^Return type \\(void\\) of method Zend_Queue_Adapter_PlatformJobQueue\\:\\:getQueues\\(\\) should be compatible with return type \\(array\\) of method Zend_Queue_Adapter_AdapterInterface\\:\\:getQueues\\(\\)$#" + count: 2 + path: library/Zend/Queue/Adapter/PlatformJobQueue.php + + - + message: "#^Return type \\(ArrayIterator\\) of method Zend_Queue_Adapter_PlatformJobQueue\\:\\:receive\\(\\) should be compatible with return type \\(Zend_Queue_Message_Iterator\\) of method Zend_Queue_Adapter_AdapterInterface\\:\\:receive\\(\\)$#" + count: 2 + path: library/Zend/Queue/Adapter/PlatformJobQueue.php + + - + message: "#^Parameter \\#1 \\$filter_options of method ZendAPI_Queue\\:\\:getJobsInQueue\\(\\) expects array, null given\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/PlatformJobQueue.php + + - + message: "#^Call to an undefined method Zend_Queue_Message\\:\\:getJobId\\(\\)\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/PlatformJobQueue.php + + - + message: "#^Method Zend_Queue_Adapter_PlatformJobQueue\\:\\:isJobIdExist\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/PlatformJobQueue.php + + - + message: "#^Method Zend_Queue_Adapter_PlatformJobQueue\\:\\:isJobIdExist\\(\\) has parameter \\$id with no typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/PlatformJobQueue.php + + - + message: "#^Ternary operator condition is always true\\.$#" + count: 1 + path: library/Zend/Queue/Adapter/PlatformJobQueue.php + + - + message: "#^Function serialize invoked with 3 parameters, 1 required\\.$#" + count: 1 + path: library/Zend/Queue/Message/PlatformJob.php + + - + message: "#^Method Zend_Queue_Message_PlatformJob\\:\\:__sleep\\(\\) should return array\\ but returns string\\.$#" + count: 1 + path: library/Zend/Queue/Message/PlatformJob.php + + - + message: "#^Method Zend_Queue_Stomp_Client\\:\\:__construct\\(\\) has parameter \\$connectionClass with no typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client.php + + - + message: "#^Method Zend_Queue_Stomp_Client\\:\\:__construct\\(\\) has parameter \\$frameClass with no typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client.php + + - + message: "#^Cannot call method setFrameClass\\(\\) on Zend_Queue_Stomp_Client_ConnectionInterface\\|null\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client.php + + - + message: "#^Cannot call method close\\(\\) on Zend_Queue_Stomp_Client_ConnectionInterface\\|null\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client.php + + - + message: "#^Cannot call method write\\(\\) on Zend_Queue_Stomp_Client_ConnectionInterface\\|null\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client.php + + - + message: "#^Cannot call method read\\(\\) on Zend_Queue_Stomp_Client_ConnectionInterface\\|null\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client.php + + - + message: "#^Cannot call method canRead\\(\\) on Zend_Queue_Stomp_Client_ConnectionInterface\\|null\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client.php + + - + message: "#^Cannot call method createFrame\\(\\) on Zend_Queue_Stomp_Client_ConnectionInterface\\|null\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client.php + + - + message: "#^Parameter \\#2 \\$mode of function stream_set_blocking expects bool, int given\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client/Connection.php + + - + message: "#^Parameter \\#1 \\$fp of function fwrite expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client/Connection.php + + - + message: "#^Parameter \\#1 \\$read_streams of function stream_select expects array\\, array\\ given\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client/Connection.php + + - + message: "#^Parameter \\#1 \\$fp of function feof expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client/Connection.php + + - + message: "#^Parameter \\#1 \\$fp of function fread expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client/Connection.php + + - + message: "#^Method Zend_Queue_Stomp_Client_ConnectionInterface\\:\\:canRead\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Client/ConnectionInterface.php + + - + message: "#^Property Zend_Queue_Stomp_Frame\\:\\:\\$_autoContentLength has no typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Frame.php + + - + message: "#^Return type \\(string\\|false\\) of method Zend_Queue_Stomp_Frame\\:\\:getBody\\(\\) should be compatible with return type \\(\\$this\\(Zend_Queue_Stomp_FrameInterface\\)\\) of method Zend_Queue_Stomp_FrameInterface\\:\\:getBody\\(\\)$#" + count: 1 + path: library/Zend/Queue/Stomp/Frame.php + + - + message: "#^Result of && is always false\\.$#" + count: 2 + path: library/Zend/Queue/Stomp/Frame.php + + - + message: "#^Strict comparison using \\!\\=\\= between null and null will always evaluate to false\\.$#" + count: 2 + path: library/Zend/Queue/Stomp/Frame.php + + - + message: "#^Property Zend_Queue_Stomp_Frame\\:\\:\\$_body \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Frame.php + + - + message: "#^Return type \\(string\\|false\\) of method Zend_Queue_Stomp_Frame\\:\\:getCommand\\(\\) should be compatible with return type \\(\\$this\\(Zend_Queue_Stomp_FrameInterface\\)\\) of method Zend_Queue_Stomp_FrameInterface\\:\\:getCommand\\(\\)$#" + count: 1 + path: library/Zend/Queue/Stomp/Frame.php + + - + message: "#^Property Zend_Queue_Stomp_Frame\\:\\:\\$_command \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Frame.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Frame.php + + - + message: "#^Parameter \\#1 \\$str of function substr expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/Frame.php + + - + message: "#^Method Zend_Queue_Stomp_FrameInterface\\:\\:setCommand\\(\\) has parameter \\$command with no typehint specified\\.$#" + count: 1 + path: library/Zend/Queue/Stomp/FrameInterface.php + + - + message: "#^Method Zend_Reflection_Class\\:\\:getDeclaringFile\\(\\) has parameter \\$reflectionClass with no typehint specified\\.$#" + count: 1 + path: library/Zend/Reflection/Class.php + + - + message: "#^Method Zend_Reflection_Class\\:\\:getStartLine\\(\\) should return int but returns int\\|false\\.$#" + count: 1 + path: library/Zend/Reflection/Class.php + + - + message: "#^Parameter \\#1 \\$filename of function file expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Reflection/Class.php + + - + message: "#^Parameter \\#1 \\$input of function array_splice expects array, array\\\\|false given\\.$#" + count: 1 + path: library/Zend/Reflection/Class.php + + - + message: "#^Parameter \\#4 \\$replacement of function array_splice expects array\\|string, true given\\.$#" + count: 1 + path: library/Zend/Reflection/Class.php + + - + message: "#^Right side of && is always true\\.$#" + count: 3 + path: library/Zend/Reflection/Class.php + + - + message: "#^Default value of the parameter \\#1 \\$filter \\(\\-1\\) of method Zend_Reflection_Class\\:\\:getMethods\\(\\) is incompatible with type string\\.$#" + count: 1 + path: library/Zend/Reflection/Class.php + + - + message: "#^Parameter \\#1 \\$filter \\(string\\) of method Zend_Reflection_Class\\:\\:getMethods\\(\\) should be compatible with parameter \\$filter \\(int\\) of method ReflectionClass\\\\:\\:getMethods\\(\\)$#" + count: 1 + path: library/Zend/Reflection/Class.php + + - + message: "#^Parameter \\#1 \\$filter of method ReflectionClass\\\\:\\:getMethods\\(\\) expects int, string given\\.$#" + count: 1 + path: library/Zend/Reflection/Class.php + + - + message: "#^Property Zend_Reflection_Docblock\\:\\:\\$_startLine has no typehint specified\\.$#" + count: 1 + path: library/Zend/Reflection/Docblock.php + + - + message: "#^Property Zend_Reflection_Docblock\\:\\:\\$_endLine has no typehint specified\\.$#" + count: 1 + path: library/Zend/Reflection/Docblock.php + + - + message: "#^Call to an undefined method Reflector\\:\\:getStartLine\\(\\)\\.$#" + count: 2 + path: library/Zend/Reflection/Docblock.php + + - + message: "#^Parameter \\#1 \\$str of function ltrim expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Reflection/Docblock.php + + - + message: "#^Right side of && is always true\\.$#" + count: 2 + path: library/Zend/Reflection/Extension.php + + - + message: "#^Access to an undefined property Zend_Reflection_File\\:\\:\\$_fileName\\.$#" + count: 2 + path: library/Zend/Reflection/File.php + + - + message: "#^Property Zend_Reflection_File\\:\\:\\$_contents \\(string\\) does not accept string\\|false\\.$#" + count: 1 + path: library/Zend/Reflection/File.php + + - + message: "#^Variable \\$foundRealpath might not be defined\\.$#" + count: 1 + path: library/Zend/Reflection/File.php + + - + message: "#^Array \\(array\\\\) does not accept string\\.$#" + count: 1 + path: library/Zend/Reflection/File.php + + - + message: "#^Array \\(array\\\\) does not accept string\\.$#" + count: 1 + path: library/Zend/Reflection/File.php + + - + message: "#^Method Zend_Reflection_Function\\:\\:getStartLine\\(\\) should return int but returns int\\|false\\.$#" + count: 1 + path: library/Zend/Reflection/Function.php + + - + message: "#^Parameter \\#1 \\$input of function array_splice expects array, array\\\\|false given\\.$#" + count: 1 + path: library/Zend/Reflection/Function.php + + - + message: "#^Parameter \\#1 \\$input of function array_splice is passed by reference, so it expects variables only\\.$#" + count: 1 + path: library/Zend/Reflection/Function.php + + - + message: "#^Parameter \\#4 \\$replacement of function array_splice expects array\\|string, true given\\.$#" + count: 1 + path: library/Zend/Reflection/Function.php + + - + message: "#^Parameter \\#1 \\$filename of function file expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Reflection/Function.php + + - + message: "#^Right side of && is always true\\.$#" + count: 1 + path: library/Zend/Reflection/Function.php + + - + message: "#^Cannot call method getDescription\\(\\) on Zend_Reflection_Docblock_Tag\\|false\\.$#" + count: 1 + path: library/Zend/Reflection/Function.php + + - + message: "#^Method Zend_Reflection_Method\\:\\:getDocblock\\(\\) has parameter \\$reflectionClass with no typehint specified\\.$#" + count: 1 + path: library/Zend/Reflection/Method.php + + - + message: "#^Method Zend_Reflection_Method\\:\\:getStartLine\\(\\) should return int but returns int\\|false\\.$#" + count: 1 + path: library/Zend/Reflection/Method.php + + - + message: "#^Right side of && is always true\\.$#" + count: 1 + path: library/Zend/Reflection/Method.php + + - + message: "#^Parameter \\#1 \\$filename of function file expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Reflection/Method.php + + - + message: "#^Parameter \\#1 \\$input of function array_splice expects array, array\\\\|false given\\.$#" + count: 1 + path: library/Zend/Reflection/Method.php + + - + message: "#^Parameter \\#4 \\$replacement of function array_splice expects array\\|string, true given\\.$#" + count: 1 + path: library/Zend/Reflection/Method.php + + - + message: "#^Parameter \\#1 \\$input of function array_slice expects array, array\\\\|false given\\.$#" + count: 1 + path: library/Zend/Reflection/Method.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\\\|false given\\.$#" + count: 2 + path: library/Zend/Reflection/Method.php + + - + message: "#^Parameter \\#1 \\$stack of function array_shift expects array, array\\\\|false given\\.$#" + count: 2 + path: library/Zend/Reflection/Method.php + + - + message: "#^Parameter \\#1 \\$haystack of function strpos expects string, string\\|null given\\.$#" + count: 4 + path: library/Zend/Reflection/Method.php + + - + message: "#^Variable \\$firstLine might not be defined\\.$#" + count: 3 + path: library/Zend/Reflection/Method.php + + - + message: "#^Parameter \\#1 \\$str of function substr expects string, string\\|null given\\.$#" + count: 2 + path: library/Zend/Reflection/Method.php + + - + message: "#^Parameter \\#1 \\$stack of function array_unshift expects array, array\\\\|false given\\.$#" + count: 1 + path: library/Zend/Reflection/Method.php + + - + message: "#^Parameter \\#1 \\$stack of function array_pop expects array, array\\\\|false given\\.$#" + count: 1 + path: library/Zend/Reflection/Method.php + + - + message: "#^Parameter \\#1 \\$haystack of function strrpos expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Reflection/Method.php + + - + message: "#^Cannot call method getName\\(\\) on ReflectionClass\\|null\\.$#" + count: 1 + path: library/Zend/Reflection/Parameter.php + + - + message: "#^If condition is always true\\.$#" + count: 1 + path: library/Zend/Reflection/Parameter.php + + - + message: "#^Method Zend_Reflection_Property\\:\\:getDeclaringClass\\(\\) has parameter \\$reflectionClass with no typehint specified\\.$#" + count: 1 + path: library/Zend/Reflection/Property.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Parameter \\#1 \\$number of function base_convert expects string, int given\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:setFormatVersion\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:_readPre21SegmentsFile\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Cannot call method getFileObject\\(\\) on Zend_Search_Lucene_Storage_Directory\\|null\\.$#" + count: 2 + path: library/Zend/Search/Lucene.php + + - + message: "#^Parameter \\#1 \\$directory of class Zend_Search_Lucene_Index_SegmentInfo constructor expects Zend_Search_Lucene_Storage_Directory, Zend_Search_Lucene_Storage_Directory\\|null given\\.$#" + count: 2 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:_readSegmentsFile\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Parameter \\#1 \\$generation of static method Zend_Search_Lucene\\:\\:getSegmentFileName\\(\\) expects int, float\\|int given\\.$#" + count: 2 + path: library/Zend/Search/Lucene.php + + - + message: "#^Parameter \\#4 \\$delGen of class Zend_Search_Lucene_Index_SegmentInfo constructor expects int, float\\|int given\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Parameter \\#6 \\$hasSingleNormFile of class Zend_Search_Lucene_Index_SegmentInfo constructor expects bool, int given\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Variable \\$isCompound might not be defined\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:__construct\\(\\) has parameter \\$create with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Parameter \\#2 \\$generation of static method Zend_Search_Lucene_Index_Writer\\:\\:createIndex\\(\\) expects int, float\\|int given\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:_close\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Parameter \\#1 \\$lockDirectory of static method Zend_Search_Lucene_LockManager\\:\\:releaseReadLock\\(\\) expects Zend_Search_Lucene_Storage_Directory, Zend_Search_Lucene_Storage_Directory\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Cannot call method close\\(\\) on Zend_Search_Lucene_Storage_Directory\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:addReference\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:removeReference\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Parameter \\#1 \\$directory of class Zend_Search_Lucene_Index_Writer constructor expects Zend_Search_Lucene_Storage_Directory, Zend_Search_Lucene_Storage_Directory\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:getDirectory\\(\\) should return Zend_Search_Lucene_Storage_Directory but returns Zend_Search_Lucene_Storage_Directory\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Argument of an invalid type array\\|null supplied for foreach, only iterables are supported\\.$#" + count: 15 + path: library/Zend/Search/Lucene.php + + - + message: "#^Variable \\$segmentInfo might not be defined\\.$#" + count: 5 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:setDefaultSearchField\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:setResultSetLimit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:setTermsPerQueryLimit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:setMaxBufferedDocs\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:setMaxMergeDocs\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:setMergeFactor\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Parameter \\#6 \\$isTokenized of class Zend_Search_Lucene_Field constructor expects bool, int given\\.$#" + count: 2 + path: library/Zend/Search/Lucene.php + + - + message: "#^Variable \\$subResults might not be defined\\.$#" + count: 4 + path: library/Zend/Search/Lucene.php + + - + message: "#^Variable \\$segInfo might not be defined\\.$#" + count: 2 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:delete\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:addDocument\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:_updateDocCount\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:commit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:optimize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:resetTermsStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Parameter \\#1 \\$termStreams of class Zend_Search_Lucene_TermStreamsPriorityQueue constructor expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:skipTo\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Cannot call method skipTo\\(\\) on Zend_Search_Lucene_TermStreamsPriorityQueue\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Cannot call method nextTerm\\(\\) on Zend_Search_Lucene_TermStreamsPriorityQueue\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Cannot call method currentTerm\\(\\) on Zend_Search_Lucene_TermStreamsPriorityQueue\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:closeTermsStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Cannot call method closeTermsStream\\(\\) on Zend_Search_Lucene_TermStreamsPriorityQueue\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene\\:\\:undeleteAll\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene.php + + - + message: "#^Method Zend_Search_Lucene_Analysis_Analyzer\\:\\:tokenize\\(\\) has parameter \\$encoding with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer.php + + - + message: "#^Method Zend_Search_Lucene_Analysis_Analyzer\\:\\:setInput\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer.php + + - + message: "#^Method Zend_Search_Lucene_Analysis_Analyzer\\:\\:setInput\\(\\) has parameter \\$encoding with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer.php + + - + message: "#^Method Zend_Search_Lucene_Analysis_Analyzer\\:\\:reset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer.php + + - + message: "#^Method Zend_Search_Lucene_Analysis_Analyzer\\:\\:setDefault\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer.php + + - + message: "#^Method Zend_Search_Lucene_Analysis_Analyzer_Common\\:\\:addFilter\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer/Common.php + + - + message: "#^Method Zend_Search_Lucene_Analysis_Analyzer_Common_Text\\:\\:reset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer/Common/Text.php + + - + message: "#^Property Zend_Search_Lucene_Analysis_Analyzer\\:\\:\\$_input \\(string\\) does not accept string\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer/Common/Text.php + + - + message: "#^Method Zend_Search_Lucene_Analysis_Analyzer_Common_TextNum\\:\\:reset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer/Common/TextNum.php + + - + message: "#^Property Zend_Search_Lucene_Analysis_Analyzer\\:\\:\\$_input \\(string\\) does not accept string\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer/Common/TextNum.php + + - + message: "#^Method Zend_Search_Lucene_Analysis_Analyzer_Common_Utf8\\:\\:reset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8.php + + - + message: "#^Property Zend_Search_Lucene_Analysis_Analyzer\\:\\:\\$_input \\(string\\) does not accept string\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8.php + + - + message: "#^Method Zend_Search_Lucene_Analysis_Analyzer_Common_Utf8Num\\:\\:reset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8Num.php + + - + message: "#^Property Zend_Search_Lucene_Analysis_Analyzer\\:\\:\\$_input \\(string\\) does not accept string\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Analyzer/Common/Utf8Num.php + + - + message: "#^Method Zend_Search_Lucene_Analysis_Token\\:\\:setPositionIncrement\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/Token.php + + - + message: "#^Method Zend_Search_Lucene_Analysis_TokenFilter_StopWords\\:\\:loadFromFile\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/TokenFilter/StopWords.php + + - + message: "#^Parameter \\#1 \\$str of function trim expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Analysis/TokenFilter/StopWords.php + + - + message: "#^Method Zend_Search_Lucene_Document\\:\\:getFieldValue\\(\\) has parameter \\$fieldName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document.php + + - + message: "#^Method Zend_Search_Lucene_Document\\:\\:getFieldUtf8Value\\(\\) has parameter \\$fieldName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document.php + + - + message: "#^Cannot access property \\$Relationship on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Docx.php + + - + message: "#^Parameter \\#1 \\$xml of static method Zend_Xml_Security\\:\\:scan\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Docx.php + + - + message: "#^Cannot call method registerXPathNamespace\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Docx.php + + - + message: "#^Cannot call method xpath\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Docx.php + + - + message: "#^Argument of an invalid type array\\\\|false supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Docx.php + + - + message: "#^Parameter \\#1 \\$source of method DOMDocument\\:\\:loadHTML\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Parameter \\#2 \\$subject of function preg_match expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Parameter \\#1 \\$str of function substr expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 3 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Cannot access property \\$parentNode on DOMNode\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Cannot call method removeChild\\(\\) on DOMNode\\|null\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Parameter \\#3 \\$str of function iconv expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Argument of an invalid type DOMNodeList\\|false supplied for foreach, only iterables are supported\\.$#" + count: 5 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Method Zend_Search_Lucene_Document_Html\\:\\:setExcludeNoFollowLinks\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Method Zend_Search_Lucene_Document_Html\\:\\:_retrieveNodeText\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Cannot access property \\$tagName on DOMNode\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Method Zend_Search_Lucene_Document_Html\\:\\:_highlightTextNode\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Parameter \\#2 \\$parameters of function call_user_func_array expects array\\, array given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Cannot access property \\$childNodes on DOMNode\\|null\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Cannot call method insertBefore\\(\\) on DOMNode\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Parameter \\#1 \\$importednode of method DOMDocument\\:\\:importNode\\(\\) expects DOMNode, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Method Zend_Search_Lucene_Document_Html\\:\\:_highlightNodeRecursive\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Parameter \\#1 \\$node of method Zend_Search_Lucene_Document_Html\\:\\:_highlightTextNode\\(\\) expects DOMText, DOMNode given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Method Zend_Search_Lucene_Document_Html\\:\\:applyColour\\(\\) has parameter \\$colour with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Method Zend_Search_Lucene_Document_Html\\:\\:highlightExtended\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Method Zend_Search_Lucene_Document_Html\\:\\:highlightExtended\\(\\) should return string but return statement is missing\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Method Zend_Search_Lucene_Document_Html\\:\\:getHTML\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Html.php + + - + message: "#^Parameter \\#1 \\$xml of static method Zend_Xml_Security\\:\\:scan\\(\\) expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Document/OpenXml.php + + - + message: "#^Cannot access property \\$Relationship on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/OpenXml.php + + - + message: "#^Cannot call method children\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 3 + path: library/Zend/Search/Lucene/Document/OpenXml.php + + - + message: "#^Parameter \\#2 \\$callback of function array_filter expects callable\\(mixed, mixed\\)\\: bool, 'strlen' given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/OpenXml.php + + - + message: "#^Cannot access property \\$Relationship on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 3 + path: library/Zend/Search/Lucene/Document/Pptx.php + + - + message: "#^Parameter \\#1 \\$xml of static method Zend_Xml_Security\\:\\:scan\\(\\) expects string, string\\|false given\\.$#" + count: 4 + path: library/Zend/Search/Lucene/Document/Pptx.php + + - + message: "#^Cannot call method registerXPathNamespace\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Search/Lucene/Document/Pptx.php + + - + message: "#^Cannot call method xpath\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Document/Pptx.php + + - + message: "#^Argument of an invalid type array\\\\|false supplied for foreach, only iterables are supported\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Document/Pptx.php + + - + message: "#^Cannot access property \\$Relationship on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Document/Xlsx.php + + - + message: "#^Parameter \\#1 \\$xml of static method Zend_Xml_Security\\:\\:scan\\(\\) expects string, string\\|false given\\.$#" + count: 3 + path: library/Zend/Search/Lucene/Document/Xlsx.php + + - + message: "#^Cannot call method registerXPathNamespace\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Xlsx.php + + - + message: "#^Cannot call method xpath\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Xlsx.php + + - + message: "#^Cannot access offset 0 on array\\\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Xlsx.php + + - + message: "#^Variable \\$xmlStrings in isset\\(\\) always exists and is not nullable\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Xlsx.php + + - + message: "#^Parameter \\#1 \\$is of method Zend_Search_Lucene_Document_Xlsx\\:\\:_parseRichText\\(\\) expects SimpleXMLElement\\|null, object given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Xlsx.php + + - + message: "#^Cannot access property \\$sheetData on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Xlsx.php + + - + message: "#^Cannot access property \\$r on SimpleXMLElement\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Document/Xlsx.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:addStates\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:addState\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:setState\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:addInputSymbols\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:addInputSymbol\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:addRules\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:addRule\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:addEntryAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:addExitAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:addInputAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:addTransitionAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:process\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSM\\:\\:reset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSM.php + + - + message: "#^Method Zend_Search_Lucene_FSMAction\\:\\:doAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/FSMAction.php + + - + message: "#^Method Zend_Search_Lucene_Field\\:\\:getUtf8Value\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Field.php + + - + message: "#^Property Zend_Search_Lucene_Index_FieldInfo\\:\\:\\$name has no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/FieldInfo.php + + - + message: "#^Property Zend_Search_Lucene_Index_FieldInfo\\:\\:\\$isIndexed has no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/FieldInfo.php + + - + message: "#^Property Zend_Search_Lucene_Index_FieldInfo\\:\\:\\$number has no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/FieldInfo.php + + - + message: "#^Property Zend_Search_Lucene_Index_FieldInfo\\:\\:\\$storeTermVector has no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/FieldInfo.php + + - + message: "#^Property Zend_Search_Lucene_Index_FieldInfo\\:\\:\\$normsOmitted has no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/FieldInfo.php + + - + message: "#^Property Zend_Search_Lucene_Index_FieldInfo\\:\\:\\$payloadsStored has no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/FieldInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_FieldInfo\\:\\:__construct\\(\\) has parameter \\$isIndexed with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/FieldInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_FieldInfo\\:\\:__construct\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/FieldInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_FieldInfo\\:\\:__construct\\(\\) has parameter \\$normsOmitted with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/FieldInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_FieldInfo\\:\\:__construct\\(\\) has parameter \\$number with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/FieldInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_FieldInfo\\:\\:__construct\\(\\) has parameter \\$payloadsStored with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/FieldInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_FieldInfo\\:\\:__construct\\(\\) has parameter \\$storeTermVector with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/FieldInfo.php + + - + message: "#^Property Zend_Search_Lucene_Index_SegmentInfo\\:\\:\\$_sharedDocStoreOptions has no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Variable \\$fileName might not be defined\\.$#" + count: 4 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Variable \\$dataOffset might not be defined\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Parameter \\#1 \\$num of method Zend_Search_Lucene_Storage_File\\:\\:readBytes\\(\\) expects int, float\\|int given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Parameter \\#1 \\$number of function base_convert expects string, int given\\.$#" + count: 3 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Function bitset_empty not found\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Function bitset_incl not found\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Parameter \\#1 \\$offset of method Zend_Search_Lucene_Storage_File\\:\\:seek\\(\\) expects int, float\\|int given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Undefined variable\\: \\$fdtFile$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Function bitset_to_array not found\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentInfo\\:\\:_cleanUpTermInfoCache\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentInfo\\:\\:_loadDictionaryIndex\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\|null given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Offset int does not exist on array\\|null\\.$#" + count: 4 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Variable \\$docFreq might not be defined\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Variable \\$skipOffset might not be defined\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentInfo\\:\\:_loadNorm\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentInfo\\:\\:delete\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Function bitset_in not found\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentInfo\\:\\:writeChanges\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^PHPDoc tag @throws with type Zend_Search_Lucene_Exceptions is not subtype of Throwable$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Function bitset_union not found\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Parameter \\#2 \\$multiplier of function str_repeat expects int, float given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentInfo\\:\\:skipTo\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Cannot call method seek\\(\\) on Zend_Search_Lucene_Storage_File\\|null\\.$#" + count: 4 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Cannot call method readVInt\\(\\) on Zend_Search_Lucene_Storage_File\\|null\\.$#" + count: 6 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Cannot access property \\$text on Zend_Search_Lucene_Index_Term\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Cannot access property \\$freqPointer on Zend_Search_Lucene_Index_TermInfo\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Cannot access property \\$proxPointer on Zend_Search_Lucene_Index_TermInfo\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentInfo\\:\\:closeTermsStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentInfo\\:\\:currentTermPositions\\(\\) should return array but returns array\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentMerger\\:\\:addSource\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentMerger.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentMerger\\:\\:merge\\(\\) should return Zend_Search_Lucene_Index_SegmentInfo but returns Zend_Search_Lucene_Index_SegmentInfo\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentMerger.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentMerger\\:\\:_mergeFields\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentMerger.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentMerger\\:\\:_mergeNorms\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentMerger.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentMerger\\:\\:_mergeStoredFields\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentMerger.php + + - + message: "#^Parameter \\#6 \\$isTokenized of class Zend_Search_Lucene_Field constructor expects bool, int given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/SegmentMerger.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentMerger\\:\\:_mergeTerms\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentMerger.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter\\:\\:addStoredFields\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter\\:\\:_dumpFNM\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter\\:\\:initializeDictionaryFiles\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter\\:\\:addTerm\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Cannot call method tell\\(\\) on Zend_Search_Lucene_Storage_File\\|null\\.$#" + count: 4 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Cannot call method writeVInt\\(\\) on Zend_Search_Lucene_Storage_File\\|null\\.$#" + count: 5 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Parameter \\#1 \\$dicFile of method Zend_Search_Lucene_Index_SegmentWriter\\:\\:_dumpTermDictEntry\\(\\) expects Zend_Search_Lucene_Storage_File, Zend_Search_Lucene_Storage_File\\|null given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter\\:\\:closeDictionaryFiles\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Cannot call method seek\\(\\) on Zend_Search_Lucene_Storage_File\\|null\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Cannot call method writeLong\\(\\) on Zend_Search_Lucene_Storage_File\\|null\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter\\:\\:_dumpTermDictEntry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Variable \\$prevTerm in isset\\(\\) always exists and is not nullable\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Variable \\$prevTermInfo in isset\\(\\) always exists and is not nullable\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter\\:\\:_generateCFS\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter_DocumentWriter\\:\\:addDocument\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter/DocumentWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter_DocumentWriter\\:\\:_dumpDictionary\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter/DocumentWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter_StreamWriter\\:\\:createStoredFieldsFiles\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter/StreamWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter_StreamWriter\\:\\:addNorm\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter/StreamWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter_StreamWriter\\:\\:addNorm\\(\\) has parameter \\$fieldName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter/StreamWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_SegmentWriter_StreamWriter\\:\\:addNorm\\(\\) has parameter \\$normVector with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/SegmentWriter/StreamWriter.php + + - + message: "#^Method Zend_Search_Lucene_Index_Term\\:\\:__construct\\(\\) has parameter \\$field with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Term.php + + - + message: "#^Method Zend_Search_Lucene_Index_Term\\:\\:__construct\\(\\) has parameter \\$text with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Term.php + + - + message: "#^Method Zend_Search_Lucene_Index_TermInfo\\:\\:__construct\\(\\) has parameter \\$docFreq with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/TermInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_TermInfo\\:\\:__construct\\(\\) has parameter \\$freqPointer with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/TermInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_TermInfo\\:\\:__construct\\(\\) has parameter \\$indexPointer with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/TermInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_TermInfo\\:\\:__construct\\(\\) has parameter \\$proxPointer with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/TermInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_TermInfo\\:\\:__construct\\(\\) has parameter \\$skipOffset with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/TermInfo.php + + - + message: "#^Method Zend_Search_Lucene_Index_TermsStream_Interface\\:\\:resetTermsStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/TermsStream/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Index_TermsStream_Interface\\:\\:skipTo\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/TermsStream/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Index_TermsStream_Interface\\:\\:closeTermsStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/TermsStream/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Index_Writer\\:\\:createIndex\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Search_Lucene_Storage_File\\:\\:writeLong\\(\\) expects int, float given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Method Zend_Search_Lucene_Index_Writer\\:\\:addDocument\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Method Zend_Search_Lucene_Index_Writer\\:\\:_maybeMergeSegments\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Method Zend_Search_Lucene_Index_Writer\\:\\:_mergeSegments\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Method Zend_Search_Lucene_Index_Writer\\:\\:_updateSegments\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Parameter \\#1 \\$generation of static method Zend_Search_Lucene\\:\\:getSegmentFileName\\(\\) expects int, float\\|int given\\.$#" + count: 4 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Method Zend_Search_Lucene_Storage_Directory\\:\\:createFile\\(\\) invoked with 2 parameters, 1 required\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Search_Lucene_Storage_File\\:\\:writeLong\\(\\) expects int, float\\|int given\\.$#" + count: 6 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Parameter \\#4 \\$delGen of class Zend_Search_Lucene_Index_SegmentInfo constructor expects int, float\\|int given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Parameter \\#6 \\$hasSingleNormFile of class Zend_Search_Lucene_Index_SegmentInfo constructor expects bool, int\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Variable \\$isCompound might not be defined\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Variable \\$docStoreOffset might not be defined\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Variable \\$docStoreSegment might not be defined\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Variable \\$docStoreIsCompoundFile might not be defined\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Parameter \\#1 \\$byte of method Zend_Search_Lucene_Storage_File\\:\\:writeByte\\(\\) expects int, int\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Variable \\$normGens might not be defined\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Call to an undefined method Zend_Search_Lucene_Storage_File\\:\\:close\\(\\)\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Method Zend_Search_Lucene_Index_Writer\\:\\:commit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Parameter \\#1 \\$number of function base_convert expects string, int given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Index/Writer.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:setFormatVersion\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:setDefaultSearchField\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:setResultSetLimit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:setMaxBufferedDocs\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:setMaxMergeDocs\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:setMergeFactor\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:delete\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:addDocument\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:commit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:optimize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:undeleteAll\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:addReference\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Interface\\:\\:removeReference\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Interface.php + + - + message: "#^Method Zend_Search_Lucene_LockManager\\:\\:releaseWriteLock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/LockManager.php + + - + message: "#^Method Zend_Search_Lucene_LockManager\\:\\:_stopReadLockProcessing\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/LockManager.php + + - + message: "#^Method Zend_Search_Lucene_LockManager\\:\\:releaseReadLock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/LockManager.php + + - + message: "#^Method Zend_Search_Lucene_LockManager\\:\\:deEscalateReadLock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/LockManager.php + + - + message: "#^Method Zend_Search_Lucene_LockManager\\:\\:releaseOptimizationLock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/LockManager.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:addIndex\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:setFormatVersion\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:setDefaultSearchField\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Using \\$this in static method Zend_Search_Lucene_MultiSearcher\\:\\:setDefaultSearchField\\(\\)\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Using \\$this in static method Zend_Search_Lucene_MultiSearcher\\:\\:getDefaultSearchField\\(\\)\\.$#" + count: 3 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:setResultSetLimit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Using \\$this in static method Zend_Search_Lucene_MultiSearcher\\:\\:setResultSetLimit\\(\\)\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Using \\$this in static method Zend_Search_Lucene_MultiSearcher\\:\\:getResultSetLimit\\(\\)\\.$#" + count: 3 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:setMaxBufferedDocs\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:setMaxMergeDocs\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:setMergeFactor\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Variable \\$termPositions might not be defined\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:delete\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:setDocumentDistributorCallback\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:addDocument\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:commit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:optimize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:resetTermsStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:skipTo\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Cannot call method skipTo\\(\\) on Zend_Search_Lucene_TermStreamsPriorityQueue\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Cannot call method nextTerm\\(\\) on Zend_Search_Lucene_TermStreamsPriorityQueue\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Cannot call method currentTerm\\(\\) on Zend_Search_Lucene_TermStreamsPriorityQueue\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:closeTermsStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Cannot call method closeTermsStream\\(\\) on Zend_Search_Lucene_TermStreamsPriorityQueue\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:undeleteAll\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:addReference\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_MultiSearcher\\:\\:removeReference\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/MultiSearcher.php + + - + message: "#^Method Zend_Search_Lucene_PriorityQueue\\:\\:put\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/PriorityQueue.php + + - + message: "#^Method Zend_Search_Lucene_PriorityQueue\\:\\:clear\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/PriorityQueue.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:getActualGeneration\\(\\) should return int but return statement is missing\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:getSegmentFileName\\(\\) should return string but return statement is missing\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method getFormatVersion\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:setFormatVersion\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method setFormatVersion\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method getDirectory\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method count\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method maxDoc\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method numDocs\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method isDeleted\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:setDefaultSearchField\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:setResultSetLimit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method getMaxBufferedDocs\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:setMaxBufferedDocs\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method setMaxBufferedDocs\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method getMaxMergeDocs\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:setMaxMergeDocs\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method setMaxMergeDocs\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method getMergeFactor\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:setMergeFactor\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method setMergeFactor\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(Zend_Search_Lucene_Interface\\|null, 'find'\\) given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method getFieldNames\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method getDocument\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method hasTerm\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method termDocs\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method termDocsFilter\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method termFreqs\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method termPositions\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method docFreq\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method getSimilarity\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method norm\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method hasDeletions\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:delete\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method delete\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:addDocument\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method addDocument\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:commit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method commit\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:optimize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method optimize\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method terms\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:resetTermsStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method resetTermsStream\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:skipTo\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method skipTo\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method nextTerm\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method currentTerm\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:closeTermsStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method closeTermsStream\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:undeleteAll\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method undeleteAll\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:addReference\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method addReference\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Proxy\\:\\:removeReference\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Cannot call method removeReference\\(\\) on Zend_Search_Lucene_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Proxy.php + + - + message: "#^Method Zend_Search_Lucene_Search_BooleanExpressionRecognizer\\:\\:processOperator\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/BooleanExpressionRecognizer.php + + - + message: "#^Method Zend_Search_Lucene_Search_BooleanExpressionRecognizer\\:\\:processLiteral\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/BooleanExpressionRecognizer.php + + - + message: "#^Method Zend_Search_Lucene_Search_BooleanExpressionRecognizer\\:\\:emptyOperatorAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/BooleanExpressionRecognizer.php + + - + message: "#^Method Zend_Search_Lucene_Search_BooleanExpressionRecognizer\\:\\:emptyNotOperatorAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/BooleanExpressionRecognizer.php + + - + message: "#^Method Zend_Search_Lucene_Search_BooleanExpressionRecognizer\\:\\:notOperatorAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/BooleanExpressionRecognizer.php + + - + message: "#^Method Zend_Search_Lucene_Search_BooleanExpressionRecognizer\\:\\:orOperatorAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/BooleanExpressionRecognizer.php + + - + message: "#^Method Zend_Search_Lucene_Search_BooleanExpressionRecognizer\\:\\:literalAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/BooleanExpressionRecognizer.php + + - + message: "#^Method Zend_Search_Lucene_Search_Highlighter_Default\\:\\:setDocument\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Highlighter/Default.php + + - + message: "#^Method Zend_Search_Lucene_Search_Highlighter_Default\\:\\:highlight\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Highlighter/Default.php + + - + message: "#^Method Zend_Search_Lucene_Search_Highlighter_Interface\\:\\:setDocument\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Highlighter/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Search_Highlighter_Interface\\:\\:highlight\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Highlighter/Interface.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query\\:\\:setBoost\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query\\:\\:execute\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query\\:\\:_initWeight\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query.php + + - + message: "#^Cannot call method sumOfSquaredWeights\\(\\) on null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query.php + + - + message: "#^Cannot call method normalize\\(\\) on null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query\\:\\:reset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query.php + + - + message: "#^Strict comparison using \\=\\=\\= between array and null will always evaluate to false\\.$#" + count: 3 + path: library/Zend/Search/Lucene/Search/Query/Boolean.php + + - + message: "#^Parameter \\#1 \\$boost of method Zend_Search_Lucene_Search_Query\\:\\:setBoost\\(\\) expects float, float\\|false given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Search/Query/Boolean.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Boolean\\:\\:getSigns\\(\\) should return array but returns array\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Boolean.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Boolean\\:\\:_calculateConjunctionResult\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Boolean.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Boolean\\:\\:_calculateNonConjunctionResult\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Boolean.php + + - + message: "#^Offset \\(int\\|string\\) does not exist on array\\|null\\.$#" + count: 4 + path: library/Zend/Search/Lucene/Search/Query/Boolean.php + + - + message: "#^Argument of an invalid type array\\|null supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Boolean.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Boolean\\:\\:execute\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Boolean.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Boolean\\:\\:matchedDocs\\(\\) should return array but returns array\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Boolean.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Boolean\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Boolean.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Empty\\:\\:execute\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Empty.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Empty\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Empty.php + + - + message: "#^Property Zend_Search_Lucene_Search_Query_Fuzzy\\:\\:\\$_maxDistances has no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Fuzzy.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Fuzzy\\:\\:setDefaultPrefixLength\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Fuzzy.php + + - + message: "#^Parameter \\#1 \\$term of class Zend_Search_Lucene_Search_Query_Term constructor expects Zend_Search_Lucene_Index_Term, Zend_Search_Lucene_Index_Term\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Fuzzy.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Fuzzy\\:\\:execute\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Fuzzy.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Fuzzy\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Fuzzy.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Insignificant\\:\\:execute\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Insignificant.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Insignificant\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Insignificant.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_MultiTerm\\:\\:getSigns\\(\\) should return array but returns array\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/MultiTerm.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_MultiTerm\\:\\:setWeight\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/MultiTerm.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_MultiTerm\\:\\:_calculateConjunctionResult\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/MultiTerm.php + + - + message: "#^Variable \\$termDocs might not be defined\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/MultiTerm.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_MultiTerm\\:\\:_calculateNonConjunctionResult\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/MultiTerm.php + + - + message: "#^Offset \\(int\\|string\\) does not exist on array\\|null\\.$#" + count: 3 + path: library/Zend/Search/Lucene/Search/Query/MultiTerm.php + + - + message: "#^Argument of an invalid type array\\|null supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/MultiTerm.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_MultiTerm\\:\\:execute\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/MultiTerm.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_MultiTerm\\:\\:matchedDocs\\(\\) should return array but returns array\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/MultiTerm.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_MultiTerm\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/MultiTerm.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Search/Query/Phrase.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Phrase\\:\\:setSlop\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Phrase.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Phrase\\:\\:addTerm\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Phrase.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Phrase\\:\\:setWeight\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Phrase.php + + - + message: "#^Access to an undefined property Zend_Search_Lucene_Search_Query_Phrase\\:\\:\\$_weights\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Phrase.php + + - + message: "#^Parameter \\#1 \\$distance of method Zend_Search_Lucene_Search_Similarity\\:\\:sloppyFreq\\(\\) expects int, float\\|int\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Phrase.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Phrase\\:\\:execute\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Phrase.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Phrase.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Phrase\\:\\:matchedDocs\\(\\) should return array but returns array\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Phrase.php + + - + message: "#^Cannot call method getValue\\(\\) on Zend_Search_Lucene_Search_Weight\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Phrase.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Phrase\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Phrase.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Preprocessing\\:\\:execute\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Fuzzy.php + + - + message: "#^Parameter \\#2 \\$subject of function preg_split expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Fuzzy.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\\\|false given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Fuzzy.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Preprocessing_Fuzzy\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Fuzzy.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Preprocessing_Phrase\\:\\:setSlop\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Phrase.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Phrase.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Preprocessing_Phrase\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Phrase.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Term.php + + - + message: "#^Parameter \\#2 \\$subject of function preg_split expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Term.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\\\|false given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Term.php + + - + message: "#^Argument of an invalid type array\\\\|false supplied for foreach, only iterables are supported\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Term.php + + - + message: "#^Cannot access offset \\(float\\|int\\) on string\\|false\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Term.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Preprocessing_Term\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Preprocessing/Term.php + + - + message: "#^Cannot access property \\$field on Zend_Search_Lucene_Index_Term\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Range.php + + - + message: "#^Property Zend_Search_Lucene_Search_Query_Range\\:\\:\\$_lowerTerm \\(Zend_Search_Lucene_Index_Term\\) does not accept Zend_Search_Lucene_Index_Term\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Range.php + + - + message: "#^Property Zend_Search_Lucene_Search_Query_Range\\:\\:\\$_upperTerm \\(Zend_Search_Lucene_Index_Term\\) does not accept Zend_Search_Lucene_Index_Term\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Range.php + + - + message: "#^Parameter \\#1 \\$term of class Zend_Search_Lucene_Search_Query_Term constructor expects Zend_Search_Lucene_Index_Term, Zend_Search_Lucene_Index_Term\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Range.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Range\\:\\:execute\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Range.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Range\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Range.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Term\\:\\:execute\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Term.php + + - + message: "#^Cannot call method getValue\\(\\) on Zend_Search_Lucene_Search_Weight\\|null\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Term.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Term\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Term.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Wildcard\\:\\:setMinPrefixLength\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Wildcard.php + + - + message: "#^Parameter \\#1 \\$term of class Zend_Search_Lucene_Search_Query_Term constructor expects Zend_Search_Lucene_Index_Term, Zend_Search_Lucene_Index_Term\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Wildcard.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Wildcard\\:\\:execute\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Wildcard.php + + - + message: "#^Method Zend_Search_Lucene_Search_Query_Wildcard\\:\\:_highlightMatches\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Query/Wildcard.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryEntry\\:\\:processFuzzyProximityModifier\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryEntry.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryEntry\\:\\:boost\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryEntry.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryEntry_Phrase\\:\\:processFuzzyProximityModifier\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryEntry/Phrase.php + + - + message: "#^Parameter \\#3 \\$fieldName of class Zend_Search_Lucene_Search_Query_Preprocessing_Phrase constructor expects string, string\\|false\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryEntry/Phrase.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryEntry_Subquery\\:\\:processFuzzyProximityModifier\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryEntry/Subquery.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryEntry_Term\\:\\:processFuzzyProximityModifier\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryEntry/Term.php + + - + message: "#^Parameter \\#3 \\$fieldName of class Zend_Search_Lucene_Search_Query_Preprocessing_Fuzzy constructor expects string, string\\|false\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryEntry/Term.php + + - + message: "#^Parameter \\#3 \\$fieldName of class Zend_Search_Lucene_Search_Query_Preprocessing_Term constructor expects string, string\\|false\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryEntry/Term.php + + - + message: "#^Parameter \\#1 \\$char of method Zend_Search_Lucene_Search_QueryLexer\\:\\:_translateInput\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryLexer.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryLexer\\:\\:addQuerySyntaxLexeme\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryLexer.php + + - + message: "#^Offset int does not exist on array\\|null\\.$#" + count: 4 + path: library/Zend/Search/Lucene/Search/QueryLexer.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryLexer.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryLexer\\:\\:addLexemeModifier\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryLexer.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryLexer\\:\\:addLexeme\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryLexer.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryLexer\\:\\:addQuotedLexeme\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryLexer.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryLexer\\:\\:addNumberLexeme\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryLexer.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryLexer\\:\\:addLexemeChar\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryLexer.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryLexer\\:\\:lexModifierErrException\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryLexer.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryLexer\\:\\:quoteWithinLexemeErrException\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryLexer.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryLexer\\:\\:wrongNumberErrException\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryLexer.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:setDefaultEncoding\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:setDefaultOperator\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:suppressQueryParsingExceptions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:dontSuppressQueryParsingExceptions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:addTermEntry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Cannot access property \\$text on int\\|string\\.$#" + count: 9 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Parameter \\#2 \\$field of class Zend_Search_Lucene_Search_QueryEntry_Term constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:addPhraseEntry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Parameter \\#2 \\$field of class Zend_Search_Lucene_Search_QueryEntry_Phrase constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:setField\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:setSign\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Cannot access property \\$type on int\\|string\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:processFuzzyProximityModifier\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:processModifierParameter\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:subqueryStart\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:subqueryEnd\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Cannot access property \\$position on int\\|string\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:logicalOperator\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:openedRQFirstTerm\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:openedRQLastTerm\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Parameter \\#1 \\$data of method Zend_Search_Lucene_Analysis_Analyzer\\:\\:tokenize\\(\\) expects string, string\\|null given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:closedRQFirstTerm\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParser\\:\\:closedRQLastTerm\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParser.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParserContext\\:\\:setNextEntryField\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParserContext.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParserContext\\:\\:setNextEntrySign\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParserContext.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParserContext\\:\\:addEntry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParserContext.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParserContext\\:\\:processFuzzyProximityModifier\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParserContext.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParserContext\\:\\:processFuzzyProximityModifier\\(\\) has parameter \\$parameter with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParserContext.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParserContext\\:\\:boost\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParserContext.php + + - + message: "#^Method Zend_Search_Lucene_Search_QueryParserContext\\:\\:addLogicalOperator\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParserContext.php + + - + message: "#^PHPDoc tag @throws with type Zend_Search_Lucene is not subtype of Throwable$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParserContext.php + + - + message: "#^Parameter \\#1 \\$literal of method Zend_Search_Lucene_Search_BooleanExpressionRecognizer\\:\\:processLiteral\\(\\) expects int, Zend_Search_Lucene_Search_QueryEntry given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParserContext.php + + - + message: "#^Invalid type Zend_Search_Lucene to throw\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/QueryParserContext.php + + - + message: "#^Method Zend_Search_Lucene_Search_Similarity\\:\\:setDefault\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Similarity.php + + - + message: "#^Method Zend_Search_Lucene_Search_Weight\\:\\:normalize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Weight.php + + - + message: "#^Call to an undefined method Zend_Search_Lucene_Search_Query\\:\\:getSigns\\(\\)\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Weight/Boolean.php + + - + message: "#^Call to an undefined method Zend_Search_Lucene_Search_Query\\:\\:getSubqueries\\(\\)\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Weight/Boolean.php + + - + message: "#^Method Zend_Search_Lucene_Search_Weight_Boolean\\:\\:normalize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Weight/Boolean.php + + - + message: "#^Method Zend_Search_Lucene_Search_Weight_Empty\\:\\:normalize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Weight/Empty.php + + - + message: "#^Call to an undefined method Zend_Search_Lucene_Search_Query\\:\\:getSigns\\(\\)\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Weight/MultiTerm.php + + - + message: "#^Call to an undefined method Zend_Search_Lucene_Search_Query\\:\\:getTerms\\(\\)\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Weight/MultiTerm.php + + - + message: "#^Call to an undefined method Zend_Search_Lucene_Search_Query\\:\\:setWeight\\(\\)\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Weight/MultiTerm.php + + - + message: "#^Method Zend_Search_Lucene_Search_Weight_MultiTerm\\:\\:normalize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Weight/MultiTerm.php + + - + message: "#^Access to an undefined property Zend_Search_Lucene_Search_Weight_Phrase\\:\\:\\$_queryWeight\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Search/Weight/Phrase.php + + - + message: "#^Method Zend_Search_Lucene_Search_Weight_Phrase\\:\\:normalize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Weight/Phrase.php + + - + message: "#^Method Zend_Search_Lucene_Search_Weight_Term\\:\\:normalize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Search/Weight/Term.php + + - + message: "#^Method Zend_Search_Lucene_Storage_Directory_Filesystem\\:\\:setDefaultFilePermissions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/Directory/Filesystem.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/Directory/Filesystem.php + + - + message: "#^Parameter \\#1 \\$dir_handle of function readdir expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/Directory/Filesystem.php + + - + message: "#^Parameter \\#1 \\$dir_handle of function closedir expects resource, resource\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/Directory/Filesystem.php + + - + message: "#^Parameter \\#2 \\$newvalue of function ini_set expects string, string\\|false given\\.$#" + count: 4 + path: library/Zend/Search/Lucene/Storage/Directory/Filesystem.php + + - + message: "#^Method Zend_Search_Lucene_Storage_Directory_Filesystem\\:\\:fileLength\\(\\) should return int but returns int\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/Directory/Filesystem.php + + - + message: "#^Method Zend_Search_Lucene_Storage_Directory_Filesystem\\:\\:fileModified\\(\\) should return int but returns int\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/Directory/Filesystem.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File\\:\\:_fwrite\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File\\:\\:lock\\(\\) has parameter \\$nonBlockinLock with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File\\:\\:unlock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File\\:\\:writeByte\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File\\:\\:writeBytes\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File\\:\\:writeInt\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File\\:\\:writeLong\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File\\:\\:writeLong32Bit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Search_Lucene_Storage_File\\:\\:writeInt\\(\\) expects int, float\\|int given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File\\:\\:writeVInt\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File\\:\\:writeString\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File.php + + - + message: "#^Property Zend_Search_Lucene_Storage_File_Filesystem\\:\\:\\$_fileHandle \\(resource\\|null\\) does not accept resource\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Parameter \\#2 \\$newvalue of function ini_set expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Parameter \\#1 \\$fp of function fseek expects resource, resource\\|null given\\.$#" + count: 3 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Filesystem\\:\\:tell\\(\\) should return int but returns int\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Parameter \\#1 \\$fp of function ftell expects resource, resource\\|null given\\.$#" + count: 3 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Parameter \\#1 \\$fp of function fflush expects resource, resource\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Filesystem\\:\\:close\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Parameter \\#2 \\$offset of function fseek expects int, int\\|false given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Filesystem\\:\\:size\\(\\) should return int but returns int\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Filesystem\\:\\:_fread\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Parameter \\#1 \\$fp of function fread expects resource, resource\\|null given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Parameter \\#1 \\$fp of function feof expects resource, resource\\|null given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Filesystem\\:\\:_fwrite\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Parameter \\#1 \\$fp of function fwrite expects resource, resource\\|null given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Parameter \\#1 \\$fp of function flock expects resource, resource\\|null given\\.$#" + count: 2 + path: library/Zend/Search/Lucene/Storage/File/Filesystem.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Memory\\:\\:seek\\(\\) should return int but return statement is missing\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Memory.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Memory\\:\\:_fwrite\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Memory.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Memory\\:\\:lock\\(\\) has parameter \\$nonBlockinLock with no typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Memory.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Memory\\:\\:unlock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Memory.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Memory\\:\\:writeByte\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Memory.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Memory\\:\\:writeBytes\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Memory.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Memory\\:\\:writeInt\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Memory.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Memory\\:\\:writeLong\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Memory.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Memory\\:\\:writeLong32Bit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Memory.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Search_Lucene_Storage_File_Memory\\:\\:writeInt\\(\\) expects int, float\\|int given\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Memory.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Memory\\:\\:writeVInt\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Memory.php + + - + message: "#^Method Zend_Search_Lucene_Storage_File_Memory\\:\\:writeString\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/Storage/File/Memory.php + + - + message: "#^Method Zend_Search_Lucene_TermStreamsPriorityQueue\\:\\:resetTermsStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/TermStreamsPriorityQueue.php + + - + message: "#^Method Zend_Search_Lucene_TermStreamsPriorityQueue\\:\\:skipTo\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/TermStreamsPriorityQueue.php + + - + message: "#^Cannot call method pop\\(\\) on Zend_Search_Lucene_Index_TermsPriorityQueue\\|null\\.$#" + count: 2 + path: library/Zend/Search/Lucene/TermStreamsPriorityQueue.php + + - + message: "#^Cannot call method top\\(\\) on Zend_Search_Lucene_Index_TermsPriorityQueue\\|null\\.$#" + count: 2 + path: library/Zend/Search/Lucene/TermStreamsPriorityQueue.php + + - + message: "#^Cannot call method put\\(\\) on Zend_Search_Lucene_Index_TermsPriorityQueue\\|null\\.$#" + count: 2 + path: library/Zend/Search/Lucene/TermStreamsPriorityQueue.php + + - + message: "#^Method Zend_Search_Lucene_TermStreamsPriorityQueue\\:\\:closeTermsStream\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Search/Lucene/TermStreamsPriorityQueue.php + + - + message: "#^Parameter \\#1 \\$what of function class_implements expects object\\|string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Serializer.php + + - + message: "#^Method Zend_Serializer\\:\\:setDefaultAdapter\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Serializer.php + + - + message: "#^Method Zend_Serializer\\:\\:getDefaultAdapter\\(\\) should return Zend_Serializer_Adapter_AdapterInterface but returns string\\|Zend_Serializer_Adapter_AdapterInterface\\.$#" + count: 1 + path: library/Zend/Serializer.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/Igbinary.php + + - + message: "#^Offset 'message' does not exist on array\\('type' \\=\\> int, 'message' \\=\\> string, 'file' \\=\\> string, 'line' \\=\\> int\\)\\|null\\.$#" + count: 2 + path: library/Zend/Serializer/Adapter/Igbinary.php + + - + message: "#^Method Zend_Serializer_Adapter_PhpCode\\:\\:serialize\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PhpCode.php + + - + message: "#^Offset 'message' does not exist on array\\('type' \\=\\> int, 'message' \\=\\> string, 'file' \\=\\> string, 'line' \\=\\> int\\)\\|null\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PhpCode.php + + - + message: "#^Undefined variable\\: \\$ret$#" + count: 1 + path: library/Zend/Serializer/Adapter/PhpCode.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PhpSerialize.php + + - + message: "#^Offset 'message' does not exist on array\\('type' \\=\\> int, 'message' \\=\\> string, 'file' \\=\\> string, 'line' \\=\\> int\\)\\|null\\.$#" + count: 2 + path: library/Zend/Serializer/Adapter/PhpSerialize.php + + - + message: "#^Property Zend_Serializer_Adapter_PythonPickle\\:\\:\\$_protocol has no typehint specified\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Property Zend_Serializer_Adapter_PythonPickle\\:\\:\\$_binary has no typehint specified\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Property Zend_Serializer_Adapter_PythonPickle\\:\\:\\$_memo has no typehint specified\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Property Zend_Serializer_Adapter_PythonPickle\\:\\:\\$_pickle has no typehint specified\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Property Zend_Serializer_Adapter_PythonPickle\\:\\:\\$_pickleLen has no typehint specified\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Property Zend_Serializer_Adapter_PythonPickle\\:\\:\\$_pos has no typehint specified\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Property Zend_Serializer_Adapter_PythonPickle\\:\\:\\$_stack has no typehint specified\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Property Zend_Serializer_Adapter_PythonPickle\\:\\:\\$_marker has no typehint specified\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Method Zend_Serializer_Adapter_PythonPickle\\:\\:__construct\\(\\) has parameter \\$opts with no typehint specified\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Binary operation \"\\.\" between void and void results in an error\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Result of method Zend_Serializer_Adapter_PythonPickle\\:\\:_write\\(\\) \\(void\\) is used\\.$#" + count: 3 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Binary operation \"\\.\" between void and 'a' results in an error\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Method Zend_Serializer_Adapter_PythonPickle\\:\\:_searchMomo\\(\\) should return int\\|false but returns int\\|string\\|false\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Method Zend_Serializer_Adapter_PythonPickle\\:\\:_isArrayAssoc\\(\\) should return bool but returns array\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Parameter \\#1 \\$ascii of function chr expects int, float\\|int\\ given\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Parameter \\#1 \\$decimal_number of function dechex expects int, float\\|int\\<1114112, max\\> given\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Parameter \\#1 \\$base of function bcpow expects string, int given\\.$#" + count: 2 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Parameter \\#1 \\$left_operand of function bcadd expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Parameter \\#1 \\$left_operand of function bcmul expects string, int given\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Parameter \\#2 \\$exponent of function bcpow expects string, int given\\.$#" + count: 2 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Parameter \\#1 \\$left_operand of function bcsub expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/PythonPickle.php + + - + message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/Wddx.php + + - + message: "#^Offset 'message' does not exist on array\\('type' \\=\\> int, 'message' \\=\\> string, 'file' \\=\\> string, 'line' \\=\\> int\\)\\|null\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/Wddx.php + + - + message: "#^Cannot access property \\$data on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Serializer/Adapter/Wddx.php + + - + message: "#^Method Zend_Service_Audioscrobbler\\:\\:setHttpClient\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Audioscrobbler.php + + - + message: "#^Parameter \\#1 \\$error_handler of function set_error_handler expects \\(callable\\(int, string, string, int, array\\)\\: bool\\)\\|null, array\\(\\$this\\(Zend_Service_Audioscrobbler\\), '_errorHandler'\\) given\\.$#" + count: 1 + path: library/Zend/Service/Audioscrobbler.php + + - + message: "#^Access to an undefined property Zend_Service_Exception\\:\\:\\$error\\.$#" + count: 1 + path: library/Zend/Service/Audioscrobbler.php + + - + message: "#^Access to an undefined property Zend_Service_Exception\\:\\:\\$response\\.$#" + count: 1 + path: library/Zend/Service/Audioscrobbler.php + + - + message: "#^Method Zend_Service_Audioscrobbler\\:\\:_getInfo\\(\\) should return SimpleXMLElement but returns DOMDocument\\|SimpleXMLElement\\.$#" + count: 1 + path: library/Zend/Service/Audioscrobbler.php + + - + message: "#^Method Zend_Service_Console_Command\\:\\:phpstderr\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Method Zend_Service_Console_Command\\:\\:phpstdex\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Default value of the parameter \\#2 \\$newLine \\(true\\) of method Zend_Service_Console_Command\\:\\:stderr\\(\\) is incompatible with type string\\.$#" + count: 1 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Method Zend_Service_Console_Command\\:\\:stderr\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Method Zend_Service_Console_Command\\:\\:bootstrap\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Parameter \\#1 \\$exception_handler of function set_exception_handler expects \\(callable\\(Throwable\\)\\: void\\)\\|null, array\\('Zend_Service…', 'phpstdex'\\) given\\.$#" + count: 1 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(mixed, mixed\\) given\\.$#" + count: 1 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Parameter \\#2 \\$parameters of function call_user_func_array expects array\\, array\\ given\\.$#" + count: 1 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Parameter \\#2 \\$docComment of static method Zend_Service_Console_Command\\:\\:_findValueForDocComment\\(\\) expects string, string\\|false given\\.$#" + count: 8 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Method Zend_Service_Console_Command\\:\\:_displayObjectInformation\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Method Zend_Service_Console_Command\\:\\:helpCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Cannot access property \\$headers on array\\.$#" + count: 2 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Cannot access property \\$description on array\\.$#" + count: 1 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Cannot access property \\$commands on array\\.$#" + count: 1 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Cannot access property \\$footers on array\\.$#" + count: 2 + path: library/Zend/Service/Console/Command.php + + - + message: "#^Parameter \\#1 \\$str of function strtolower expects string, string\\|true\\|null given\\.$#" + count: 2 + path: library/Zend/Service/Console/Command/ParameterSource/Argv.php + + - + message: "#^Parameter \\#2 \\$search of function array_key_exists expects array, array\\|false given\\.$#" + count: 4 + path: library/Zend/Service/Console/Command/ParameterSource/ConfigFile.php + + - + message: "#^Call to function is_null\\(\\) with string\\|false will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Service/Console/Command/ParameterSource/Env.php + + - + message: "#^Parameter \\#1 \\$str of function strtolower expects string, string\\|null given\\.$#" + count: 2 + path: library/Zend/Service/Console/Command/ParameterSource/Env.php + + - + message: "#^Parameter \\#1 \\$str of function trim expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Console/Command/ParameterSource/Prompt.php + + - + message: "#^Parameter \\#1 \\$str of function rtrim expects string, string\\|false\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Console/Command/ParameterSource/StdIn.php + + - + message: "#^Parameter \\#1 \\$uname of method Zend_Service_Delicious\\:\\:setAuth\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Delicious.php + + - + message: "#^Parameter \\#2 \\$pass of method Zend_Service_Delicious\\:\\:setAuth\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Delicious.php + + - + message: "#^Default value of the parameter \\#2 \\$count \\(15\\) of method Zend_Service_Delicious\\:\\:getRecentPosts\\(\\) is incompatible with type string\\.$#" + count: 1 + path: library/Zend/Service/Delicious.php + + - + message: "#^Method Zend_Service_Delicious\\:\\:createNewPost\\(\\) has parameter \\$title with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Delicious.php + + - + message: "#^Method Zend_Service_Delicious\\:\\:createNewPost\\(\\) has parameter \\$url with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Delicious.php + + - + message: "#^Parameter \\#1 \\$micro_seconds of function usleep expects int, float given\\.$#" + count: 1 + path: library/Zend/Service/Delicious.php + + - + message: "#^Cannot access property \\$nodeName on DOMElement\\|null\\.$#" + count: 2 + path: library/Zend/Service/Delicious.php + + - + message: "#^Cannot access property \\$childNodes on DOMElement\\|null\\.$#" + count: 2 + path: library/Zend/Service/Delicious.php + + - + message: "#^Cannot access property \\$nodeName on DOMNode\\|null\\.$#" + count: 1 + path: library/Zend/Service/Delicious.php + + - + message: "#^Cannot call method getAttribute\\(\\) on DOMNode\\|null\\.$#" + count: 2 + path: library/Zend/Service/Delicious.php + + - + message: "#^Parameter \\#1 \\$date of class Zend_Date constructor expects array\\|int\\|string\\|Zend_Date\\|Zend_TimeSync_Protocol\\|null, int\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Delicious/Post.php + + - + message: "#^Cannot access property \\$nodeName on DOMNode\\|null\\.$#" + count: 1 + path: library/Zend/Service/Delicious/PostList.php + + - + message: "#^Parameter \\#2 \\$values of class Zend_Service_Delicious_Post constructor expects array\\|DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Delicious/PostList.php + + - + message: "#^Method Zend_Service_Delicious_PostList\\:\\:offsetSet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Delicious/PostList.php + + - + message: "#^Method Zend_Service_Delicious_PostList\\:\\:offsetUnset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Delicious/PostList.php + + - + message: "#^Parameter \\#1 \\$options of static method Zend_Service_Ebay_Abstract\\:\\:optionsToArray\\(\\) expects array\\|Zend_Config, array\\|Zend_Config\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Abstract.php + + - + message: "#^Strict comparison using \\=\\=\\= between null and array\\|Zend_Config will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Abstract.php + + - + message: "#^Parameter \\#1 \\$options of static method Zend_Service_Ebay_Abstract\\:\\:optionsToArray\\(\\) expects array\\|Zend_Config, array\\|Zend_Config\\|null given\\.$#" + count: 7 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Response_Items constructor expects DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Method Zend_Service_Ebay_Finding\\:\\:_findItems\\(\\) should return Zend_Service_Ebay_Finding_Response_Items but returns Zend_Service_Ebay_Finding_Response_Abstract\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Response_Histograms constructor expects DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Method Zend_Service_Ebay_Finding\\:\\:getHistograms\\(\\) should return Zend_Service_Ebay_Finding_Response_Histograms but returns Zend_Service_Ebay_Finding_Response_Abstract\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Response_Keywords constructor expects DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Method Zend_Service_Ebay_Finding\\:\\:getSearchKeywordsRecommendation\\(\\) should return Zend_Service_Ebay_Finding_Response_Keywords but returns Zend_Service_Ebay_Finding_Response_Abstract\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Parameter \\#1 \\$options of method Zend_Service_Ebay_Abstract\\:\\:_optionsToNameValueSyntax\\(\\) expects array\\|Zend_Config, array\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Parameter \\#1 \\$doc of class DOMXPath constructor expects DOMDocument, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 3 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Parameter \\#2 \\$contextnode of method DOMXPath\\:\\:query\\(\\) expects DOMNode, DOMNode\\|null given\\.$#" + count: 2 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Cannot access property \\$ebayFindingXPath on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Method Zend_Service_Ebay_Finding\\:\\:_parseResponse\\(\\) should return DOMDocument but returns DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding.php + + - + message: "#^Access to an undefined property DOMDocument\\:\\:\\$ebayFindingXPath\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Abstract.php + + - + message: "#^Default value of the parameter \\#3 \\$array \\(false\\) of method Zend_Service_Ebay_Finding_Abstract\\:\\:_query\\(\\) is incompatible with type string\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Abstract.php + + - + message: "#^Argument of an invalid type DOMNodeList\\|false supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Abstract.php + + - + message: "#^Parameter \\#3 \\$array of method Zend_Service_Ebay_Finding_Abstract\\:\\:_query\\(\\) expects string, true given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Aspect.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Aspect.php + + - + message: "#^Parameter \\#1 \\$nodes of class Zend_Service_Ebay_Finding_Aspect_Histogram_Value_Set constructor expects DOMNodeList, DOMNodeList\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Aspect.php + + - + message: "#^Parameter \\#3 \\$array of method Zend_Service_Ebay_Finding_Abstract\\:\\:_query\\(\\) expects string, true given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Aspect/Histogram/Container.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Aspect/Histogram/Container.php + + - + message: "#^Parameter \\#1 \\$nodes of class Zend_Service_Ebay_Finding_Aspect_Set constructor expects DOMNodeList, DOMNodeList\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Aspect/Histogram/Container.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Aspect_Histogram_Value constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Aspect/Histogram/Value/Set.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Aspect constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Aspect/Set.php + + - + message: "#^Parameter \\#1 \\$categoryId of method Zend_Service_Ebay_Finding\\:\\:findItemsByCategory\\(\\) expects int, string given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Category.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Category/Histogram.php + + - + message: "#^Parameter \\#1 \\$nodes of class Zend_Service_Ebay_Finding_Category_Histogram_Set constructor expects DOMNodeList, DOMNodeList\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Category/Histogram.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Category/Histogram/Container.php + + - + message: "#^Parameter \\#1 \\$nodes of class Zend_Service_Ebay_Finding_Category_Histogram_Set constructor expects DOMNodeList, DOMNodeList\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Category/Histogram/Container.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Category_Histogram constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Category/Histogram/Set.php + + - + message: "#^Parameter \\#3 \\$array of method Zend_Service_Ebay_Finding_Abstract\\:\\:_query\\(\\) expects string, true given\\.$#" + count: 2 + path: library/Zend/Service/Ebay/Finding/Error/Data.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Error_Data constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Error/Data/Set.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Error/Message.php + + - + message: "#^Parameter \\#1 \\$nodes of class Zend_Service_Ebay_Finding_Error_Data_Set constructor expects DOMNodeList, DOMNodeList\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Error/Message.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Response/Abstract.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Error_Message constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Response/Abstract.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 2 + path: library/Zend/Service/Ebay/Finding/Response/Histograms.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Aspect_Histogram_Container constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Response/Histograms.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Category_Histogram_Container constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Response/Histograms.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 2 + path: library/Zend/Service/Ebay/Finding/Response/Items.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Search_Result constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Response/Items.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_PaginationOutput constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Response/Items.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(Zend_Service_Ebay_Finding, string\\) given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Response/Items.php + + - + message: "#^Parameter \\#1 \\$options of static method Zend_Service_Ebay_Abstract\\:\\:optionsToArray\\(\\) expects array\\|Zend_Config, array\\|Zend_Config\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Response/Keywords.php + + - + message: "#^Parameter \\#3 \\$array of method Zend_Service_Ebay_Finding_Abstract\\:\\:_query\\(\\) expects string, true given\\.$#" + count: 2 + path: library/Zend/Service/Ebay/Finding/Search/Item.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 7 + path: library/Zend/Service/Ebay/Finding/Search/Item.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_ListingInfo constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Search/Item.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Category constructor expects DOMElement, DOMNode given\\.$#" + count: 2 + path: library/Zend/Service/Ebay/Finding/Search/Item.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_SellerInfo constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Search/Item.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_SellingStatus constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Search/Item.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_ShippingInfo constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Search/Item.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Storefront constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Search/Item.php + + - + message: "#^Parameter \\#1 \\$productId of method Zend_Service_Ebay_Finding\\:\\:findItemsByProduct\\(\\) expects int, string given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Search/Item.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Ebay_Finding_Search_Item constructor expects DOMElement, DOMNode given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Search/Item/Set.php + + - + message: "#^Ternary operator condition is always true\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/Set/Abstract.php + + - + message: "#^Parameter \\#3 \\$array of method Zend_Service_Ebay_Finding_Abstract\\:\\:_query\\(\\) expects string, true given\\.$#" + count: 1 + path: library/Zend/Service/Ebay/Finding/ShippingInfo.php + + - + message: "#^Parameter \\#1 \\$dom of static method Zend_Service_Flickr\\:\\:_checkErrors\\(\\) expects DOMDocument, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 6 + path: library/Zend/Service/Flickr.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Flickr_ResultSet constructor expects DOMDocument, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 3 + path: library/Zend/Service/Flickr.php + + - + message: "#^Parameter \\#1 \\$doc of class DOMXPath constructor expects DOMDocument, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 3 + path: library/Zend/Service/Flickr.php + + - + message: "#^Cannot call method getAttribute\\(\\) on DOMNode\\|null\\.$#" + count: 4 + path: library/Zend/Service/Flickr.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 3 + path: library/Zend/Service/Flickr.php + + - + message: "#^Argument of an invalid type DOMNodeList\\|false supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Service/Flickr.php + + - + message: "#^Parameter \\#1 \\$options of class Zend_Validate_Between constructor expects array\\|Zend_Config, int given\\.$#" + count: 3 + path: library/Zend/Service/Flickr.php + + - + message: "#^Cannot call method getAttribute\\(\\) on DOMElement\\|null\\.$#" + count: 1 + path: library/Zend/Service/Flickr.php + + - + message: "#^Argument of an invalid type DOMNodeList\\|false supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Service/Flickr/Result.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Service/Flickr/ResultSet.php + + - + message: "#^Cannot call method getAttribute\\(\\) on DOMNode\\|null\\.$#" + count: 4 + path: library/Zend/Service/Flickr/ResultSet.php + + - + message: "#^Property Zend_Service_Flickr_ResultSet\\:\\:\\$_results \\(DOMNodeList\\) does not accept DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Service/Flickr/ResultSet.php + + - + message: "#^Parameter \\#1 \\$image of class Zend_Service_Flickr_Result constructor expects DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Flickr/ResultSet.php + + - + message: "#^Method Zend_Service_LiveDocx\\:\\:__destruct\\(\\) with return type void returns bool but should not return anything\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx.php + + - + message: "#^Strict comparison using \\=\\=\\= between null and Zend_Soap_Client will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:LogIn\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:LogOut\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx.php + + - + message: "#^Parameter \\#1 \\$str of function substr expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx.php + + - + message: "#^Method Zend_Service_LiveDocx_MailMerge\\:\\:__construct\\(\\) has parameter \\$options with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Return typehint of method Zend_Service_LiveDocx_MailMerge\\:\\:__construct\\(\\) has invalid type throws\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:SetLocalTemplate\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Parameter \\#1 \\$str of function base64_encode expects string, string\\|false given\\.$#" + count: 3 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:SetRemoteTemplate\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:SetFieldValues\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Variable \\$method might not be defined\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:SetBlockFieldValues\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Parameter \\#1 \\$blockName of method Zend_Service_LiveDocx_MailMerge\\:\\:setBlockFieldValues\\(\\) expects string, array\\|string given\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Parameter \\#1 \\$field of method Zend_Service_LiveDocx_MailMerge\\:\\:setFieldValue\\(\\) expects string, array\\|string given\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Parameter \\#2 \\$value of method Zend_Service_LiveDocx_MailMerge\\:\\:setFieldValue\\(\\) expects array\\|string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:SetDocumentPassword\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:SetDocumentAccessPermissions\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^PHPDoc tag @throws with type Zend_Service_LiveDocx_Excpetion is not subtype of Throwable$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:CreateDocument\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:RetrieveDocument\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetMetafiles\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetAllMetafiles\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetBitmaps\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetAllBitmaps\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetFieldNames\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetBlockFieldNames\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetBlockNames\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:UploadTemplate\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:DownloadTemplate\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:DeleteTemplate\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:ListTemplates\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:TemplateExists\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:ShareDocument\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Method Zend_Service_LiveDocx_MailMerge\\:\\:shareDocument\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:ListSharedDocuments\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:DeleteSharedDocument\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Method Zend_Service_LiveDocx_MailMerge\\:\\:downloadSharedDocument\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Method Zend_Service_LiveDocx_MailMerge\\:\\:downloadSharedDocument\\(\\) has parameter \\$filename with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:DownloadSharedDocument\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetTemplateFormats\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetDocumentFormats\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetFontNames\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetDocumentAccessOptions\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetImageImportFormats\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:GetImageExportFormats\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Method Zend_Service_LiveDocx_MailMerge\\:\\:getImageFormats\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:UploadImage\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:DownloadImage\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:ListImages\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:DeleteImage\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Call to an undefined method Zend_Soap_Client\\:\\:ImageExists\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/LiveDocx/MailMerge.php + + - + message: "#^Variable \\$user in isset\\(\\) always exists and is not nullable\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Abstract.php + + - + message: "#^Variable \\$key in isset\\(\\) always exists and is not nullable\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Abstract.php + + - + message: "#^Method Zend_Service_Rackspace_Abstract\\:\\:setServiceNet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Abstract.php + + - + message: "#^Property Zend_Service_Rackspace_Abstract\\:\\:\\$token \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Abstract.php + + - + message: "#^Property Zend_Service_Rackspace_Abstract\\:\\:\\$cdnUrl \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Abstract.php + + - + message: "#^Property Zend_Service_Rackspace_Abstract\\:\\:\\$managementUrl \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Abstract.php + + - + message: "#^Parameter \\#3 \\$subject of function preg_replace expects array\\|string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Abstract.php + + - + message: "#^Property Zend_Service_Rackspace_Abstract\\:\\:\\$storageUrl \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Abstract.php + + - + message: "#^Cannot access offset 'tot_containers' on array\\|bool\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files.php + + - + message: "#^Cannot access offset 'size_containers' on array\\|bool\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files.php + + - + message: "#^Cannot access offset 'tot_objects' on array\\|bool\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files.php + + - + message: "#^Parameter \\#1 \\$url of method Zend_Service_Rackspace_Abstract\\:\\:httpCall\\(\\) expects string, bool\\|string given\\.$#" + count: 3 + path: library/Zend/Service/Rackspace/Files.php + + - + message: "#^Parameter \\#3 \\$headers of method Zend_Service_Rackspace_Abstract\\:\\:httpCall\\(\\) expects array, null given\\.$#" + count: 3 + path: library/Zend/Service/Rackspace/Files.php + + - + message: "#^Method Zend_Service_Rackspace_Files\\:\\:getCdnContainers\\(\\) should return array\\|bool but returns Zend_Service_Rackspace_Files_ContainerList\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files.php + + - + message: "#^Parameter \\#1 \\$str of function strtolower expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files.php + + - + message: "#^Parameter \\#2 \\$data of class Zend_Service_Rackspace_Files_Container constructor expects array, array\\|true given\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files.php + + - + message: "#^Parameter \\#4 \\$data of method Zend_Service_Rackspace_Abstract\\:\\:httpCall\\(\\) expects array, null given\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files.php + + - + message: "#^Parameter \\#1 \\$str of function strtolower expects string, string\\|null given\\.$#" + count: 2 + path: library/Zend/Service/Rackspace/Files.php + + - + message: "#^Access to an undefined property Zend_Service_Rackspace_Files_Container\\:\\:\\$service\\.$#" + count: 16 + path: library/Zend/Service/Rackspace/Files/Container.php + + - + message: "#^Cannot assign offset 'bytes' to array\\|bool\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/Container.php + + - + message: "#^Cannot assign offset 'count' to array\\|bool\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/Container.php + + - + message: "#^Cannot assign offset 'cdn_enabled' to array\\|bool\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/Container.php + + - + message: "#^Cannot assign offset 'ttl' to array\\|bool\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/Container.php + + - + message: "#^Cannot assign offset 'log_retention' to array\\|bool\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/Container.php + + - + message: "#^Cannot assign offset 'cdn_uri' to array\\|bool\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/Container.php + + - + message: "#^Cannot assign offset 'cdn_uri_ssl' to array\\|bool\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/Container.php + + - + message: "#^Method Zend_Service_Rackspace_Files_ContainerList\\:\\:__construct\\(\\) has parameter \\$service with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/ContainerList.php + + - + message: "#^Method Zend_Service_Rackspace_Files_ContainerList\\:\\:offsetSet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/ContainerList.php + + - + message: "#^Method Zend_Service_Rackspace_Files_ContainerList\\:\\:offsetUnset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/ContainerList.php + + - + message: "#^Result of \\|\\| is always false\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/Object.php + + - + message: "#^Cannot access offset 'metadata' on array\\|true\\.$#" + count: 2 + path: library/Zend/Service/Rackspace/Files/Object.php + + - + message: "#^Cannot access offset 'cdn_enabled' on array\\|true\\.$#" + count: 2 + path: library/Zend/Service/Rackspace/Files/Object.php + + - + message: "#^Cannot access offset 'cdn_uri' on array\\|true\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/Object.php + + - + message: "#^Cannot access offset 'cdn_uri_ssl' on array\\|true\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/Object.php + + - + message: "#^Method Zend_Service_Rackspace_Files_ObjectList\\:\\:__construct\\(\\) has parameter \\$container with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/ObjectList.php + + - + message: "#^Method Zend_Service_Rackspace_Files_ObjectList\\:\\:__construct\\(\\) has parameter \\$service with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/ObjectList.php + + - + message: "#^Method Zend_Service_Rackspace_Files_ObjectList\\:\\:offsetSet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/ObjectList.php + + - + message: "#^Method Zend_Service_Rackspace_Files_ObjectList\\:\\:offsetUnset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Files/ObjectList.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers.php + + - + message: "#^Parameter \\#1 \\$str of function base64_encode expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers.php + + - + message: "#^Parameter \\#3 \\$headers of method Zend_Service_Rackspace_Abstract\\:\\:httpCall\\(\\) expects array, null given\\.$#" + count: 11 + path: library/Zend/Service/Rackspace/Servers.php + + - + message: "#^Parameter \\#4 \\$data of method Zend_Service_Rackspace_Abstract\\:\\:httpCall\\(\\) expects array, null given\\.$#" + count: 11 + path: library/Zend/Service/Rackspace/Servers.php + + - + message: "#^Parameter \\#5 \\$body of method Zend_Service_Rackspace_Abstract\\:\\:httpCall\\(\\) expects string\\|null, string\\|false given\\.$#" + count: 11 + path: library/Zend/Service/Rackspace/Servers.php + + - + message: "#^Cannot access offset 'public' on array\\|true\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers.php + + - + message: "#^Cannot access offset 'private' on array\\|true\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers.php + + - + message: "#^Method Zend_Service_Rackspace_Servers\\:\\:shareIpAddress\\(\\) has parameter \\$configure with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers.php + + - + message: "#^Parameter \\#1 \\$str of function rawurlencode expects string, int given\\.$#" + count: 2 + path: library/Zend/Service/Rackspace/Servers.php + + - + message: "#^Method Zend_Service_Rackspace_Servers\\:\\:createSharedIpGroup\\(\\) should return array\\|bool but returns Zend_Service_Rackspace_Servers_SharedIpGroup\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers.php + + - + message: "#^Method Zend_Service_Rackspace_Servers_Image\\:\\:__construct\\(\\) has parameter \\$service with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/Image.php + + - + message: "#^Cannot call method toArray\\(\\) on Zend_Service_Rackspace_Servers_Image\\|true\\.$#" + count: 2 + path: library/Zend/Service/Rackspace/Servers/Image.php + + - + message: "#^Result of \\|\\| is always false\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/ImageList.php + + - + message: "#^Method Zend_Service_Rackspace_Servers_ImageList\\:\\:offsetSet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/ImageList.php + + - + message: "#^Method Zend_Service_Rackspace_Servers_ImageList\\:\\:offsetUnset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/ImageList.php + + - + message: "#^Result of \\|\\| is always false\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/Server.php + + - + message: "#^Method Zend_Service_Rackspace_Servers_Server\\:\\:reboot\\(\\) has parameter \\$hard with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/Server.php + + - + message: "#^Result of \\|\\| is always false\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/ServerList.php + + - + message: "#^Method Zend_Service_Rackspace_Servers_ServerList\\:\\:offsetSet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/ServerList.php + + - + message: "#^Method Zend_Service_Rackspace_Servers_ServerList\\:\\:offsetUnset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/ServerList.php + + - + message: "#^Result of \\|\\| is always false\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/SharedIpGroup.php + + - + message: "#^Parameter \\#1 \\$id of method Zend_Service_Rackspace_Servers\\:\\:getSharedIpGroup\\(\\) expects int, string given\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/SharedIpGroup.php + + - + message: "#^Cannot call method toArray\\(\\) on Zend_Service_Rackspace_Servers_SharedIpGroup\\|true\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/SharedIpGroup.php + + - + message: "#^Parameter \\#1 \\$id of method Zend_Service_Rackspace_Servers\\:\\:getServer\\(\\) expects string, int given\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/SharedIpGroup.php + + - + message: "#^Result of \\|\\| is always false\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/SharedIpGroupList.php + + - + message: "#^Method Zend_Service_Rackspace_Servers_SharedIpGroupList\\:\\:offsetSet\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/SharedIpGroupList.php + + - + message: "#^Method Zend_Service_Rackspace_Servers_SharedIpGroupList\\:\\:offsetUnset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/Rackspace/Servers/SharedIpGroupList.php + + - + message: "#^Method Zend_Service_ShortUrl_AbstractShortener\\:\\:_validateUri\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/ShortUrl/AbstractShortener.php + + - + message: "#^Method Zend_Service_ShortUrl_AbstractShortener\\:\\:_verifyBaseUri\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/ShortUrl/AbstractShortener.php + + - + message: "#^Parameter \\#2 \\$value of method Zend_Http_Client\\:\\:setParameterGet\\(\\) expects string\\|null, int given\\.$#" + count: 1 + path: library/Zend/Service/ShortUrl/JdemCz.php + + - + message: "#^Property Zend_Service_ShortUrl_MetamarkNet\\:\\:\\$_apiUri has no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/ShortUrl/MetamarkNet.php + + - + message: "#^Parameter \\#2 \\$value of method Zend_Http_Client\\:\\:setCookie\\(\\) expects string\\|null, int given\\.$#" + count: 1 + path: library/Zend/Service/ShortUrl/TinyUrlCom.php + + - + message: "#^Cannot call method getAttribute\\(\\) on DOMNode\\|null\\.$#" + count: 1 + path: library/Zend/Service/ShortUrl/TinyUrlCom.php + + - + message: "#^Parameter \\#1 \\$pw of method Zend_Service_SlideShare\\:\\:setPassword\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/SlideShare.php + + - + message: "#^Parameter \\#1 \\$un of method Zend_Service_SlideShare\\:\\:setUserName\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/SlideShare.php + + - + message: "#^Cannot call method getName\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 6 + path: library/Zend/Service/SlideShare.php + + - + message: "#^Cannot access property \\$Message on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 3 + path: library/Zend/Service/SlideShare.php + + - + message: "#^Parameter \\#2 \\$code of class Zend_Service_SlideShare_Exception constructor expects int, string given\\.$#" + count: 3 + path: library/Zend/Service/SlideShare.php + + - + message: "#^Cannot access property \\$SlideShowID on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/SlideShare.php + + - + message: "#^Cannot clone non\\-object variable \\$sxe of type DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/SlideShare.php + + - + message: "#^Parameter \\#1 \\$node of method Zend_Service_SlideShare\\:\\:_slideShowNodeToObject\\(\\) expects SimpleXMLElement, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 1 + path: library/Zend/Service/SlideShare.php + + - + message: "#^Cannot call method children\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/SlideShare.php + + - + message: "#^Parameter \\#1 \\$id of method Zend_Service_SlideShare_SlideShow\\:\\:setId\\(\\) expects int, string given\\.$#" + count: 1 + path: library/Zend/Service/SlideShare.php + + - + message: "#^Parameter \\#1 \\$views of method Zend_Service_SlideShare_SlideShow\\:\\:setNumViews\\(\\) expects int, string given\\.$#" + count: 1 + path: library/Zend/Service/SlideShare.php + + - + message: "#^Parameter \\#1 \\$status of method Zend_Service_SlideShare_SlideShow\\:\\:setStatus\\(\\) expects int, string given\\.$#" + count: 1 + path: library/Zend/Service/SlideShare.php + + - + message: "#^Property Zend_Service_SqlAzure_Management_Client\\:\\:\\$_retryPolicy \\(Zend_Service_WindowsAzure_RetryPolicy_RetryPolicyAbstract\\) does not accept Zend_Service_WindowsAzure_RetryPolicy_RetryPolicyAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Method Zend_Service_SqlAzure_Management_Client\\:\\:setHttpClientChannel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Call to function is_null\\(\\) with array will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:getDocNamespaces\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:getNamespaces\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:registerXPathNamespace\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Method Zend_Service_SqlAzure_Management_Client\\:\\:_parseResponse\\(\\) should return SimpleXMLElement\\|false but returns DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Right side of && is always true\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#" + count: 13 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Undefined variable\\: \\$affinityGroup$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Cannot access property \\$Server on SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 2 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, SimpleXMLElement given\\.$#" + count: 2 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Call to function is_null\\(\\) with array\\(SimpleXMLElement\\)\\|SimpleXMLElement will always evaluate to false\\.$#" + count: 2 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\\\|SimpleXMLElement given\\.$#" + count: 2 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Method Zend_Service_SqlAzure_Management_Client\\:\\:dropServer\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Method Zend_Service_SqlAzure_Management_Client\\:\\:setAdministratorPassword\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Cannot access property \\$FirewallRule on SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Method Zend_Service_SqlAzure_Management_Client\\:\\:deleteFirewallRule\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Method Zend_Service_SqlAzure_Management_Client\\:\\:createFirewallRuleForMicrosoftServices\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/Client.php + + - + message: "#^Method Zend_Service_SqlAzure_Management_ServiceEntityAbstract\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/ServiceEntityAbstract.php + + - + message: "#^Method Zend_Service_SqlAzure_Management_ServiceEntityAbstract\\:\\:__get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/SqlAzure/Management/ServiceEntityAbstract.php + + - + message: "#^Access to an undefined property SoapHeader\\:\\:\\$name\\.$#" + count: 1 + path: library/Zend/Service/StrikeIron/Base.php + + - + message: "#^Method Zend_Service_StrikeIron_Base\\:\\:getSoapClient\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/StrikeIron/Base.php + + - + message: "#^Method Zend_Service_StrikeIron_Decorator\\:\\:__call\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/StrikeIron/Decorator.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(object, string\\) given\\.$#" + count: 1 + path: library/Zend/Service/StrikeIron/Decorator.php + + - + message: "#^PHPDoc tag @throws with type Exception\\\\DomainException is not subtype of Throwable$#" + count: 6 + path: library/Zend/Service/Twitter.php + + - + message: "#^PHPDoc tag @throws with type Exception\\\\BadMethodCallException is not subtype of Throwable$#" + count: 1 + path: library/Zend/Service/Twitter.php + + - + message: "#^Parameter \\#1 \\$object of function method_exists expects object\\|string, Zend_Oauth_Consumer\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Twitter.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(Zend_Oauth_Consumer\\|null, string\\) given\\.$#" + count: 1 + path: library/Zend/Service/Twitter.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(\\$this\\(Zend_Service_Twitter\\), string\\) given\\.$#" + count: 1 + path: library/Zend/Service/Twitter.php + + - + message: "#^Method Zend_Service_Twitter\\:\\:getHttpClient\\(\\) should return Zend_Http_Client but returns Zend_Http_Client\\|null\\.$#" + count: 1 + path: library/Zend/Service/Twitter.php + + - + message: "#^PHPDoc tag @throws with type Exception\\\\DomainException\\|Zend_Http_Client_Exception is not subtype of Throwable$#" + count: 19 + path: library/Zend/Service/Twitter.php + + - + message: "#^PHPDoc tag @throws with type Exception\\\\DomainException\\|Exception\\\\InvalidArgumentException\\|Exception\\\\OutOfRangeException\\|Zend_Http_Client_Exception is not subtype of Throwable$#" + count: 2 + path: library/Zend/Service/Twitter.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Service/Twitter.php + + - + message: "#^Parameter \\#1 \\$int of method Zend_Service_Twitter\\:\\:validInteger\\(\\) expects int\\|string, int\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Twitter.php + + - + message: "#^Parameter \\#1 \\$cookiejar of method Zend_Http_Client\\:\\:setCookieJar\\(\\) expects bool\\|Zend_Http_CookieJar, array\\|Zend_Http_CookieJar given\\.$#" + count: 1 + path: library/Zend/Service/Twitter.php + + - + message: "#^Parameter \\#2 \\$subject of function preg_match expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Service/Twitter.php + + - + message: "#^PHPDoc tag @throws with type Exception\\\\InvalidArgumentException is not subtype of Throwable$#" + count: 1 + path: library/Zend/Service/Twitter.php + + - + message: "#^Parameter \\#1 \\$name of method Zend_Service_Twitter\\:\\:validateScreenName\\(\\) expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Service/Twitter.php + + - + message: "#^PHPDoc tag @throws with type Exception\\\\DomainException is not subtype of Throwable$#" + count: 1 + path: library/Zend/Service/Twitter/Response.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:listCertificatesCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:listCertificatesCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:listCertificatesCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:listCertificatesCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:listCertificatesCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:addCertificateCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:addCertificateCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:addCertificateCommand\\(\\) has parameter \\$certificateLocation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:addCertificateCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:addCertificateCommand\\(\\) has parameter \\$certificatePassword with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:addCertificateCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:addCertificateCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:addCertificateCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificateCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificateCommand\\(\\) has parameter \\$algorithm with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificateCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificateCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificateCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificateCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificateCommand\\(\\) has parameter \\$thumbprint with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificatePropertyCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificatePropertyCommand\\(\\) has parameter \\$algorithm with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificatePropertyCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificatePropertyCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificatePropertyCommand\\(\\) has parameter \\$property with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificatePropertyCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificatePropertyCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:getCertificatePropertyCommand\\(\\) has parameter \\$thumbprint with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:deleteCertificateCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:deleteCertificateCommand\\(\\) has parameter \\$algorithm with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:deleteCertificateCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:deleteCertificateCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:deleteCertificateCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:deleteCertificateCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:deleteCertificateCommand\\(\\) has parameter \\$thumbprint with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Certificate\\:\\:deleteCertificateCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Certificate.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$label with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$packageUrl with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$production with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$serviceConfigurationLocation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$staging with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$startImmediately with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromStorageCommand\\(\\) has parameter \\$warningsAsErrors with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Undefined variable\\: \\$client$#" + count: 3 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$label with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$packageLocation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$production with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$serviceConfigurationLocation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$staging with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$startImmediately with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$storageAccount with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:createFromLocalCommand\\(\\) has parameter \\$warningsAsErrors with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertiesCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertiesCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertiesCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertiesCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertiesCommand\\(\\) has parameter \\$deploymentSlot with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertiesCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertiesCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertyCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertyCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertyCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertyCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertyCommand\\(\\) has parameter \\$deploymentSlot with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertyCommand\\(\\) has parameter \\$property with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertyCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:getPropertyCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:swapCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:swapCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:swapCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:swapCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:swapCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:swapCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Parameter \\#2 \\$productionDeploymentName of method Zend_Service_WindowsAzure_Management_Client\\:\\:swapDeployment\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:deleteCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:deleteCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:deleteCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:deleteCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:deleteCommand\\(\\) has parameter \\$deploymentSlot with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:deleteCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:deleteCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:deleteCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateConfigurationCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateConfigurationCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateConfigurationCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateConfigurationCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateConfigurationCommand\\(\\) has parameter \\$deploymentSlot with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateConfigurationCommand\\(\\) has parameter \\$serviceConfigurationLocation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateConfigurationCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateConfigurationCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateConfigurationCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateStatusCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateStatusCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateStatusCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateStatusCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateStatusCommand\\(\\) has parameter \\$deploymentSlot with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateStatusCommand\\(\\) has parameter \\$newStatus with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateStatusCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateStatusCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:updateStatusCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:editInstanceNumberCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:editInstanceNumberCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:editInstanceNumberCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:editInstanceNumberCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:editInstanceNumberCommand\\(\\) has parameter \\$deploymentSlot with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:editInstanceNumberCommand\\(\\) has parameter \\$newInstanceNumber with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:editInstanceNumberCommand\\(\\) has parameter \\$roleName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:editInstanceNumberCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:editInstanceNumberCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:editInstanceNumberCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:rebootInstanceCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:rebootInstanceCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:rebootInstanceCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:rebootInstanceCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:rebootInstanceCommand\\(\\) has parameter \\$deploymentSlot with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:rebootInstanceCommand\\(\\) has parameter \\$instanceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:rebootInstanceCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:rebootInstanceCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:rebootInstanceCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:reimageInstanceCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:reimageInstanceCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:reimageInstanceCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:reimageInstanceCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:reimageInstanceCommand\\(\\) has parameter \\$deploymentSlot with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:reimageInstanceCommand\\(\\) has parameter \\$instanceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:reimageInstanceCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:reimageInstanceCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:reimageInstanceCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has parameter \\$deploymentSlot with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has parameter \\$label with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has parameter \\$mode with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has parameter \\$packageUrl with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has parameter \\$roleName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has parameter \\$serviceConfigurationLocation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromStorageCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$deploymentSlot with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$label with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$mode with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$packageLocation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$roleName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$serviceConfigurationLocation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$storageAccount with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:upgradeFromLocalCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:walkUpgradeDomainsCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:walkUpgradeDomainsCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:walkUpgradeDomainsCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:walkUpgradeDomainsCommand\\(\\) has parameter \\$deploymentName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:walkUpgradeDomainsCommand\\(\\) has parameter \\$deploymentSlot with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:walkUpgradeDomainsCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:walkUpgradeDomainsCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:walkUpgradeDomainsCommand\\(\\) has parameter \\$upgradeDomain with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Deployment\\:\\:walkUpgradeDomainsCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Deployment.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_GetAsynchronousOperation\\:\\:getInfoCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_GetAsynchronousOperation\\:\\:getInfoCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_GetAsynchronousOperation\\:\\:getInfoCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_GetAsynchronousOperation\\:\\:getInfoCommand\\(\\) has parameter \\$requestId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_GetAsynchronousOperation\\:\\:getInfoCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php + + - + message: "#^Parameter \\#1 \\$object of method Zend_Service_Console_Command\\:\\:_displayObjectInformation\\(\\) expects object, Zend_Service_WindowsAzure_Management_OperationStatusInstance\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_GetAsynchronousOperation\\:\\:waitForCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_GetAsynchronousOperation\\:\\:waitForCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_GetAsynchronousOperation\\:\\:waitForCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_GetAsynchronousOperation\\:\\:waitForCommand\\(\\) has parameter \\$interval with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_GetAsynchronousOperation\\:\\:waitForCommand\\(\\) has parameter \\$requestId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_GetAsynchronousOperation\\:\\:waitForCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/GetAsynchronousOperation.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Package\\:\\:scaffoldCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Package\\:\\:scaffoldCommand\\(\\) has parameter \\$argv with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Package\\:\\:scaffoldCommand\\(\\) has parameter \\$path with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Package\\:\\:scaffoldCommand\\(\\) has parameter \\$scaffolder with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Parameter \\#1 \\$filename of function is_file expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Parameter \\#1 \\$fname of class Phar constructor expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Package\\:\\:createPackageCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Package\\:\\:createPackageCommand\\(\\) has parameter \\$outputPath with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Package\\:\\:createPackageCommand\\(\\) has parameter \\$path with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Package\\:\\:createPackageCommand\\(\\) has parameter \\$runDevFabric with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Parameter \\#1 \\$arr1 of function array_merge expects array, array\\\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Parameter \\#2 \\.\\.\\.\\$args of function array_merge expects array, array\\\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Parameter \\#3 \\.\\.\\.\\$args of function array_merge expects array, array\\\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Cannot access property \\$WebRole on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^If condition is always true\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, SimpleXMLElement given\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Cannot access property \\$WorkerRole on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Package\\:\\:createScaffolderCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Package\\:\\:createScaffolderCommand\\(\\) has parameter \\$rootPath with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Package\\:\\:createScaffolderCommand\\(\\) has parameter \\$scaffolderFile with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Parameter \\#2 \\$base_directory of method Phar\\:\\:buildFromIterator\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Parameter \\#1 \\$path of class RecursiveDirectoryIterator constructor expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Package.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_PackageScaffolder_PackageScaffolderAbstract\\:\\:invoke\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php + + - + message: "#^Default value of the parameter \\#2 \\$newLine \\(true\\) of method Zend_Service_WindowsAzure_CommandLine_PackageScaffolder_PackageScaffolderAbstract\\:\\:log\\(\\) is incompatible with type string\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_PackageScaffolder_PackageScaffolderAbstract\\:\\:log\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_PackageScaffolder_PackageScaffolderAbstract\\:\\:extractResources\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_PackageScaffolder_PackageScaffolderAbstract\\:\\:applyTransforms\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php + + - + message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#" + count: 5 + path: library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php + + - + message: "#^Result of \\|\\| is always false\\.$#" + count: 5 + path: library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php + + - + message: "#^Cannot call method read\\(\\) on Directory\\|false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php + + - + message: "#^Cannot call method close\\(\\) on Directory\\|false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php + + - + message: "#^Parameter \\#3 \\$subject of function str_replace expects array\\|string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php + + - + message: "#^Parameter \\#2 \\$mode of function chmod expects int, string given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php + + - + message: "#^Parameter \\#2 \\$mode of function mkdir expects int, string given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/PackageScaffolder/PackageScaffolderAbstract.php + + - + message: "#^Method Scaffolder\\:\\:invoke\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Scaffolders/DefaultScaffolder/index.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:listCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:listCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:listCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:listCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:getPropertiesCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:getPropertiesCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:getPropertiesCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:getPropertiesCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:getPropertiesCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Parameter \\#1 \\$object of method Zend_Service_Console_Command\\:\\:_displayObjectInformation\\(\\) expects object, Zend_Service_WindowsAzure_Management_HostedServiceInstance\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:getPropertyCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:getPropertyCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:getPropertyCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:getPropertyCommand\\(\\) has parameter \\$property with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:getPropertyCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:getPropertyCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:createCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:createCommand\\(\\) has parameter \\$affinityGroup with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:createCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:createCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:createCommand\\(\\) has parameter \\$description with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:createCommand\\(\\) has parameter \\$label with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:createCommand\\(\\) has parameter \\$location with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:createCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:createCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:createCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:updateCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:updateCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:updateCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:updateCommand\\(\\) has parameter \\$description with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:updateCommand\\(\\) has parameter \\$label with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:updateCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:updateCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:updateCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:deleteCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:deleteCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:deleteCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:deleteCommand\\(\\) has parameter \\$serviceName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:deleteCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Service\\:\\:deleteCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Service.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:listAccountsCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:listAccountsCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:listAccountsCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:listAccountsCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getPropertiesCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getPropertiesCommand\\(\\) has parameter \\$accountName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getPropertiesCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getPropertiesCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getPropertiesCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Parameter \\#1 \\$object of method Zend_Service_Console_Command\\:\\:_displayObjectInformation\\(\\) expects object, Zend_Service_WindowsAzure_Management_StorageServiceInstance\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getPropertyCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getPropertyCommand\\(\\) has parameter \\$accountName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getPropertyCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getPropertyCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getPropertyCommand\\(\\) has parameter \\$property with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getPropertyCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getKeysCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getKeysCommand\\(\\) has parameter \\$accountName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getKeysCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getKeysCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getKeysCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getKeyCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getKeyCommand\\(\\) has parameter \\$accountName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getKeyCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getKeyCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getKeyCommand\\(\\) has parameter \\$key with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:getKeyCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:regenerateKeysCommand\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:regenerateKeysCommand\\(\\) has parameter \\$accountName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:regenerateKeysCommand\\(\\) has parameter \\$certificate with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:regenerateKeysCommand\\(\\) has parameter \\$certificatePassphrase with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:regenerateKeysCommand\\(\\) has parameter \\$key with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:regenerateKeysCommand\\(\\) has parameter \\$subscriptionId with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_CommandLine_Storage\\:\\:regenerateKeysCommand\\(\\) has parameter \\$waitForOperation with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/CommandLine/Storage.php + + - + message: "#^Parameter \\#2 \\$start of function substr expects int, int\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Credentials/SharedAccessSignature.php + + - + message: "#^Cannot access offset 'query' on array\\(\\)\\|array\\('scheme' \\=\\> string, 'host' \\=\\> string, 'port' \\=\\> int, 'user' \\=\\> string, 'pass' \\=\\> string, 'path' \\=\\> string, 'query' \\=\\> string, 'fragment' \\=\\> string\\)\\|false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Credentials/SharedAccessSignature.php + + - + message: "#^Cannot access offset 'path' on array\\(\\)\\|array\\('scheme' \\=\\> string, 'host' \\=\\> string, 'port' \\=\\> int, 'user' \\=\\> string, 'pass' \\=\\> string, 'path' \\=\\> string, 'query' \\=\\> string, 'fragment' \\=\\> string\\)\\|false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Credentials/SharedAccessSignature.php + + - + message: "#^Method Zend_Service_WindowsAzure_Credentials_SharedAccessSignature\\:\\:signRequestHeaders\\(\\) should return array but returns array\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Credentials/SharedAccessSignature.php + + - + message: "#^Parameter \\#2 \\$start of function substr expects int, int\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Credentials/SharedKey.php + + - + message: "#^Parameter \\#1 \\$array of method Zend_Service_WindowsAzure_Credentials_CredentialsAbstract\\:\\:_issetOr\\(\\) expects array, array\\|null given\\.$#" + count: 9 + path: library/Zend/Service/WindowsAzure/Credentials/SharedKey.php + + - + message: "#^Negated boolean expression is always true\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Credentials/SharedKey.php + + - + message: "#^Parameter \\#2 \\$start of function substr expects int, int\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Credentials/SharedKeyLite.php + + - + message: "#^Method Zend_Service_WindowsAzure_Diagnostics_ConfigurationDirectories\\:\\:addSubscription\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationDirectories.php + + - + message: "#^Method Zend_Service_WindowsAzure_Diagnostics_ConfigurationDirectories\\:\\:removeSubscription\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationDirectories.php + + - + message: "#^Method Zend_Service_WindowsAzure_Diagnostics_ConfigurationInstance\\:\\:loadXml\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationInstance.php + + - + message: "#^Cannot access property \\$DataSources on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 23 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationInstance.php + + - + message: "#^Left side of && is always true\\.$#" + count: 3 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationInstance.php + + - + message: "#^Right side of && is always true\\.$#" + count: 3 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationInstance.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, SimpleXMLElement given\\.$#" + count: 3 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationInstance.php + + - + message: "#^Access to an undefined property Zend_Service_WindowsAzure_Diagnostics_ConfigurationInstance\\:\\:\\$DataSources\\.$#" + count: 23 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationInstance.php + + - + message: "#^Method Zend_Service_WindowsAzure_Diagnostics_ConfigurationObjectBaseAbstract\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationObjectBaseAbstract.php + + - + message: "#^Method Zend_Service_WindowsAzure_Diagnostics_ConfigurationObjectBaseAbstract\\:\\:__get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationObjectBaseAbstract.php + + - + message: "#^Method Zend_Service_WindowsAzure_Diagnostics_ConfigurationPerformanceCounters\\:\\:addSubscription\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationPerformanceCounters.php + + - + message: "#^Method Zend_Service_WindowsAzure_Diagnostics_ConfigurationPerformanceCounters\\:\\:removeSubscription\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationPerformanceCounters.php + + - + message: "#^Method Zend_Service_WindowsAzure_Diagnostics_ConfigurationWindowsEventLog\\:\\:addSubscription\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationWindowsEventLog.php + + - + message: "#^Method Zend_Service_WindowsAzure_Diagnostics_ConfigurationWindowsEventLog\\:\\:removeSubscription\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/ConfigurationWindowsEventLog.php + + - + message: "#^Property Zend_Service_WindowsAzure_Diagnostics_Manager\\:\\:\\$_blobStorageClient \\(Zend_Service_WindowsAzure_Storage_Blob\\) does not accept Zend_Service_WindowsAzure_Storage_Blob\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/Manager.php + + - + message: "#^Method Zend_Service_WindowsAzure_Diagnostics_Manager\\:\\:_ensureStorageInitialized\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/Manager.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/Manager.php + + - + message: "#^Method Zend_Service_WindowsAzure_Diagnostics_Manager\\:\\:setConfigurationForCurrentRoleInstance\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/Manager.php + + - + message: "#^Method Zend_Service_WindowsAzure_Diagnostics_Manager\\:\\:setConfigurationForRoleInstance\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Diagnostics/Manager.php + + - + message: "#^Return type \\(Zend_Service_WindowsAzure_Storage_DynamicTableEntity\\) of method Zend_Service_WindowsAzure_Log_Formatter_WindowsAzure\\:\\:format\\(\\) should be compatible with return type \\(string\\) of method Zend_Log_Formatter_Interface\\:\\:format\\(\\)$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Log/Formatter/WindowsAzure.php + + - + message: "#^Parameter \\#2 \\$rowKey of class Zend_Service_WindowsAzure_Storage_DynamicTableEntity constructor expects string, float given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Log/Formatter/WindowsAzure.php + + - + message: "#^PHPDoc tag @throws with type Zend_Service_Log_Exception is not subtype of Throwable$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Log/Writer/WindowsAzure.php + + - + message: "#^Method Zend_Service_WindowsAzure_Log_Writer_WindowsAzure\\:\\:shutdown\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Log/Writer/WindowsAzure.php + + - + message: "#^Call to an undefined method Zend_Service_WindowsAzure_Storage_Table\\:\\:commit\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Log/Writer/WindowsAzure.php + + - + message: "#^Method Zend_Service_WindowsAzure_Log_Writer_WindowsAzure\\:\\:setFormatter\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Log/Writer/WindowsAzure.php + + - + message: "#^Parameter \\#2 \\$entity of method Zend_Service_WindowsAzure_Storage_Table\\:\\:insertEntity\\(\\) expects Zend_Service_WindowsAzure_Storage_TableEntity\\|null, string given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Log/Writer/WindowsAzure.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_AffinityGroupInstance\\:\\:__construct\\(\\) has parameter \\$description with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/AffinityGroupInstance.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_AffinityGroupInstance\\:\\:__construct\\(\\) has parameter \\$hostedServices with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/AffinityGroupInstance.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_AffinityGroupInstance\\:\\:__construct\\(\\) has parameter \\$label with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/AffinityGroupInstance.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_AffinityGroupInstance\\:\\:__construct\\(\\) has parameter \\$location with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/AffinityGroupInstance.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_AffinityGroupInstance\\:\\:__construct\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/AffinityGroupInstance.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_AffinityGroupInstance\\:\\:__construct\\(\\) has parameter \\$storageServices with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/AffinityGroupInstance.php + + - + message: "#^Property Zend_Service_WindowsAzure_Management_Client\\:\\:\\$_retryPolicy \\(Zend_Service_WindowsAzure_RetryPolicy_RetryPolicyAbstract\\) does not accept Zend_Service_WindowsAzure_RetryPolicy_RetryPolicyAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:setHttpClientChannel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:getDocNamespaces\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:getNamespaces\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:registerXPathNamespace\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:_parseResponse\\(\\) should return SimpleXMLElement\\|false but returns DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Right side of && is always true\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Call to function is_null\\(\\) with SimpleXMLElement\\|false will always evaluate to false\\.$#" + count: 5 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$ID on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$Status on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$Error on SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Ternary operator condition is always true\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 6 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#" + count: 79 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot call method getDocNamespaces\\(\\) on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot call method registerXPathNamespace\\(\\) on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot call method xpath\\(\\) on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Argument of an invalid type array\\\\|false supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Call to function is_null\\(\\) with SimpleXMLElement will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$ContinuationToken on SimpleXMLElement\\|false\\.$#" + count: 3 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$Status on Zend_Service_WindowsAzure_Management_OperationStatusInstance\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$StorageService on SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 7 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, SimpleXMLElement given\\.$#" + count: 10 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Call to function is_null\\(\\) with array\\(SimpleXMLElement\\)\\|SimpleXMLElement will always evaluate to false\\.$#" + count: 9 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\\\|SimpleXMLElement given\\.$#" + count: 9 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$Url on SimpleXMLElement\\|false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$ServiceName on SimpleXMLElement\\|false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$StorageServiceProperties on SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$StorageServiceKeys on SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$HostedService on SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:createHostedService\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:updateHostedService\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:deleteHostedService\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$HostedServiceProperties on SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$Deployments on SimpleXMLElement\\|false\\.$#" + count: 3 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:createDeployment\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Parameter \\#1 \\$data of function utf8_decode expects string, string\\|false given\\.$#" + count: 5 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:_getDeployment\\(\\) should return Zend_Service_WindowsAzure_Management_DeploymentInstance but returns Zend_Service_WindowsAzure_Management_DeploymentInstance\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Parameter \\#1 \\$xmlService of method Zend_Service_WindowsAzure_Management_Client\\:\\:_convertXmlElementToDeploymentInstance\\(\\) expects object, SimpleXMLElement\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:swapDeployment\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:deleteDeploymentBySlot\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:deleteDeploymentByDeploymentId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:_deleteDeployment\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:updateDeploymentStatusBySlot\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:updateDeploymentStatusByDeploymentId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:_updateDeploymentStatus\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Call to function is_null\\(\\) with object will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$Name\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$DeploymentSlot\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$PrivateID\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$Label\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$Url\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$Configuration\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$Status\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$UpgradeStatus\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$UpgradeType\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$CurrentUpgradeDomainState\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$CurrentUpgradeDomain\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$UpgradeDomainCount\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$RoleInstanceList\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Access to an undefined property object\\:\\:\\$RoleList\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:setInstanceCountBySlot\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Call to function is_null\\(\\) with array\\|string will always evaluate to false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:setInstanceCountByDeploymentId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:_updateInstanceCountInConfiguration\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Parameter \\#1 \\$xml of static method Zend_Xml_Security\\:\\:scan\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot call method getDocNamespaces\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot call method registerXPathNamespace\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot call method xpath\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access offset 0 on array\\\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot call method asXML\\(\\) on DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:configureDeploymentBySlot\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:configureDeploymentByDeploymentId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:_configureDeployment\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:upgradeDeploymentBySlot\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Parameter \\#6 \\$roleToUpgrade of method Zend_Service_WindowsAzure_Management_Client\\:\\:_upgradeDeployment\\(\\) expects string, string\\|null given\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:upgradeDeploymentByDeploymentId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:_upgradeDeployment\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:walkUpgradeDomainBySlot\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:walkUpgradeDomainByDeploymentId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:_walkUpgradeDomain\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:rebootRoleInstanceBySlot\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:rebootRoleInstanceByDeploymentId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:reimageRoleInstanceBySlot\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:reimageRoleInstanceByDeploymentId\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:_rebootOrReimageRoleInstance\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$Certificate on SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$Data on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:addCertificate\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Parameter \\#1 \\$str of function base64_encode expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:deleteCertificate\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$AffinityGroup on SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:createAffinityGroup\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:updateAffinityGroup\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_Client\\:\\:deleteAffinityGroup\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$Label on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$Description on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$Location on SimpleXMLElement\\|false\\.$#" + count: 5 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$HostedServices on SimpleXMLElement\\|false\\.$#" + count: 3 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$StorageServices on SimpleXMLElement\\|false\\.$#" + count: 3 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$OperatingSystem on SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Parameter \\#3 \\$isDefault of class Zend_Service_WindowsAzure_Management_OperatingSystemInstance constructor expects string, bool given\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Parameter \\#4 \\$isActive of class Zend_Service_WindowsAzure_Management_OperatingSystemInstance constructor expects string, bool given\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Cannot access property \\$OperatingSystemFamily on SimpleXMLElement\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Management/Client.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_ServiceEntityAbstract\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/ServiceEntityAbstract.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_ServiceEntityAbstract\\:\\:__get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/ServiceEntityAbstract.php + + - + message: "#^Method Zend_Service_WindowsAzure_Management_SubscriptionOperationInstance\\:\\:addOperationParameter\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Management/SubscriptionOperationInstance.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\|string given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/RetryPolicy/NoRetry.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\|string given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/RetryPolicy/RetryN.php + + - + message: "#^Result of \\|\\| is always true\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Parameter \\#3 \\$read of function session_set_save_handler expects callable\\(string\\)\\: string, array\\(\\$this\\(Zend_Service_WindowsAzure_SessionHandler\\), 'read'\\) given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Parameter \\#4 \\$write of function session_set_save_handler expects callable\\(string, string\\)\\: bool, array\\(\\$this\\(Zend_Service_WindowsAzure_SessionHandler\\), 'write'\\) given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Parameter \\#5 \\$destroy of function session_set_save_handler expects callable\\(string\\)\\: bool, array\\(\\$this\\(Zend_Service_WindowsAzure_SessionHandler\\), 'destroy'\\) given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Parameter \\#6 \\$gc of function session_set_save_handler expects callable\\(string\\)\\: bool, array\\(\\$this\\(Zend_Service_WindowsAzure_SessionHandler\\), 'gc'\\) given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Call to an undefined method Zend_Service_WindowsAzure_Storage_Blob\\|Zend_Service_WindowsAzure_Storage_Table\\:\\:createTableIfNotExists\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Call to an undefined method Zend_Service_WindowsAzure_Storage_Blob\\|Zend_Service_WindowsAzure_Storage_Table\\:\\:createContainerIfNotExists\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Method Zend_Service_WindowsAzure_SessionHandler\\:\\:read\\(\\) should return string\\|false but return statement is missing\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Call to an undefined method Zend_Service_WindowsAzure_Storage_Blob\\|Zend_Service_WindowsAzure_Storage_Table\\:\\:retrieveEntityById\\(\\)\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Cannot access property \\$serializedData on Zend_Service_WindowsAzure_Storage_TableEntity\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Call to an undefined method Zend_Service_WindowsAzure_Storage_Blob\\|Zend_Service_WindowsAzure_Storage_Table\\:\\:getBlobData\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Method Zend_Service_WindowsAzure_SessionHandler\\:\\:write\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Parameter \\#2 \\$rowKey of class Zend_Service_WindowsAzure_Storage_DynamicTableEntity constructor expects string, int given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Access to an undefined property Zend_Service_WindowsAzure_Storage_DynamicTableEntity\\:\\:\\$sessionExpires\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Access to an undefined property Zend_Service_WindowsAzure_Storage_DynamicTableEntity\\:\\:\\$serializedData\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Call to an undefined method Zend_Service_WindowsAzure_Storage_Blob\\|Zend_Service_WindowsAzure_Storage_Table\\:\\:updateEntity\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Call to an undefined method Zend_Service_WindowsAzure_Storage_Blob\\|Zend_Service_WindowsAzure_Storage_Table\\:\\:insertEntity\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Call to an undefined method Zend_Service_WindowsAzure_Storage_Blob\\|Zend_Service_WindowsAzure_Storage_Table\\:\\:putBlobData\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Method Zend_Service_WindowsAzure_SessionHandler\\:\\:destroy\\(\\) should return bool but return statement is missing\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Call to an undefined method Zend_Service_WindowsAzure_Storage_Blob\\|Zend_Service_WindowsAzure_Storage_Table\\:\\:deleteEntity\\(\\)\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Call to an undefined method Zend_Service_WindowsAzure_Storage_Blob\\|Zend_Service_WindowsAzure_Storage_Table\\:\\:deleteBlob\\(\\)\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Method Zend_Service_WindowsAzure_SessionHandler\\:\\:gc\\(\\) should return bool but return statement is missing\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Call to an undefined method Zend_Service_WindowsAzure_Storage_Blob\\|Zend_Service_WindowsAzure_Storage_Table\\:\\:retrieveEntities\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Call to an undefined method Zend_Service_WindowsAzure_Storage_Blob\\|Zend_Service_WindowsAzure_Storage_Table\\:\\:listBlobs\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/SessionHandler.php + + - + message: "#^Property Zend_Service_WindowsAzure_Storage\\:\\:\\$_retryPolicy \\(Zend_Service_WindowsAzure_RetryPolicy_RetryPolicyAbstract\\) does not accept Zend_Service_WindowsAzure_RetryPolicy_RetryPolicyAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage\\:\\:setHttpClientChannel\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage\\:\\:setRetryPolicy\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage\\:\\:setProxy\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage\\:\\:setCredentials\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage\\:\\:getCredentials\\(\\) should return Zend_Service_WindowsAzure_Credentials_CredentialsAbstract but returns Zend_Service_WindowsAzure_Credentials_CredentialsAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage.php + + - + message: "#^Cannot call method signRequestUrl\\(\\) on Zend_Service_WindowsAzure_Credentials_CredentialsAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage.php + + - + message: "#^Cannot call method signRequestHeaders\\(\\) on Zend_Service_WindowsAzure_Credentials_CredentialsAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:getDocNamespaces\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:getNamespaces\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage.php + + - + message: "#^Call to an undefined method DOMDocument\\|SimpleXMLElement\\:\\:registerXPathNamespace\\(\\)\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage\\:\\:_parseResponse\\(\\) should return SimpleXMLElement\\|false but returns DOMDocument\\|SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Batch\\:\\:__construct\\(\\) has parameter \\$baseUrl with no typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Batch.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Batch\\:\\:_beginBatch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Batch.php + + - + message: "#^Cannot call method setCurrentBatch\\(\\) on Zend_Service_WindowsAzure_Storage_BatchStorageAbstract\\|null\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Batch.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Batch\\:\\:_clean\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Batch.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Batch\\:\\:enlistOperation\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Batch.php + + - + message: "#^Cannot call method performBatch\\(\\) on Zend_Service_WindowsAzure_Storage_BatchStorageAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Batch.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Batch\\:\\:rollback\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Batch.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_BatchStorageAbstract\\:\\:setCurrentBatch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/BatchStorageAbstract.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_BatchStorageAbstract\\:\\:getCurrentBatch\\(\\) should return Zend_Service_WindowsAzure_Storage_Batch but returns Zend_Service_WindowsAzure_Storage_Batch\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/BatchStorageAbstract.php + + - + message: "#^Cannot call method signRequestUrl\\(\\) on Zend_Service_WindowsAzure_Credentials_CredentialsAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/BatchStorageAbstract.php + + - + message: "#^Cannot call method signRequestHeaders\\(\\) on Zend_Service_WindowsAzure_Credentials_CredentialsAbstract\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/BatchStorageAbstract.php + + - + message: "#^Parameter \\#2 \\$etag of class Zend_Service_WindowsAzure_Storage_BlobContainer constructor expects string, string\\|null given\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#3 \\$lastModified of class Zend_Service_WindowsAzure_Storage_BlobContainer constructor expects string, string\\|null given\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:createContainerIfNotExists\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#1 \\$str of function strtolower expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:getContainerAcl\\(\\) should return array\\|string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^If condition is always true\\.$#" + count: 3 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, SimpleXMLElement given\\.$#" + count: 5 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:setContainerAcl\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Call to function is_null\\(\\) with true will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:setContainerMetadata\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:deleteContainer\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Cannot access property \\$Containers on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Cannot access property \\$NextMarker on SimpleXMLElement\\|false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Call to function is_null\\(\\) with SimpleXMLElement will always evaluate to false\\.$#" + count: 3 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#11 \\$cacheControl of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects string, false given\\.$#" + count: 3 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#12 \\$blobType of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects string, array given\\.$#" + count: 3 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#3 \\$snapshotId of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects string, null given\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#4 \\$etag of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects string, string\\|null given\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#5 \\$lastModified of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects string, string\\|null given\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#3 \\$identifier of method Zend_Service_WindowsAzure_Storage_Blob\\:\\:putBlock\\(\\) expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#4 \\$contents of method Zend_Service_WindowsAzure_Storage_Blob\\:\\:putBlock\\(\\) expects array, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Default value of the parameter \\#4 \\$contents \\(''\\) of method Zend_Service_WindowsAzure_Storage_Blob\\:\\:putBlock\\(\\) is incompatible with type array\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:putBlock\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, array given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:putBlockList\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Cannot access property \\$CommittedBlocks on SimpleXMLElement\\|false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Cannot access property \\$UncommittedBlocks on SimpleXMLElement\\|false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:putPage\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Binary operation \"\\+\" between 'Page blob size must…' and 4194304 results in an error\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Cannot access property \\$PageRange on SimpleXMLElement\\|false\\.$#" + count: 3 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\\\|SimpleXMLElement given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:getBlob\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#10 \\$contentLanguage of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#11 \\$cacheControl of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#12 \\$blobType of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#13 \\$leaseStatus of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#3 \\$snapshotId of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#7 \\$size of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects int, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#8 \\$contentType of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#9 \\$contentEncoding of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:setBlobMetadata\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:setBlobProperties\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:deleteBlob\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#3 \\$leaseId of class Zend_Service_WindowsAzure_Storage_LeaseInstance constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#4 \\$leaseTime of class Zend_Service_WindowsAzure_Storage_LeaseInstance constructor expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Cannot access property \\$Blobs on SimpleXMLElement\\|false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#7 \\$size of class Zend_Service_WindowsAzure_Storage_BlobInstance constructor expects int, string given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:registerStreamWrapper\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob\\:\\:unregisterStreamWrapper\\(\\) should return Zend_Service_WindowsAzure_Storage_Blob but return statement is missing\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Right side of && is always true\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Parameter \\#1 \\$string of function strlen expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 6 + path: library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php + + - + message: "#^Cannot access offset 'host' on array\\(\\)\\|array\\('scheme' \\=\\> string, 'host' \\=\\> string, 'port' \\=\\> int, 'user' \\=\\> string, 'pass' \\=\\> string, 'path' \\=\\> string, 'query' \\=\\> string, 'fragment' \\=\\> string\\)\\|false\\.$#" + count: 4 + path: library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php + + - + message: "#^Cannot assign offset 'path' to array\\\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php + + - + message: "#^Property Zend_Service_WindowsAzure_Storage_Blob_Stream\\:\\:\\$_temporaryFileName \\(string\\) does not accept string\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php + + - + message: "#^Parameter \\#1 \\$filename of function fopen expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php + + - + message: "#^Parameter \\#3 \\$localFileName of method Zend_Service_WindowsAzure_Storage_Blob\\:\\:getBlob\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php + + - + message: "#^Property Zend_Service_WindowsAzure_Storage_Blob_Stream\\:\\:\\$_temporaryFileHandle \\(resource\\) does not accept resource\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Blob_Stream\\:\\:stream_tell\\(\\) should return int but returns int\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php + + - + message: "#^Parameter \\#1 \\$array_arg of function current expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php + + - + message: "#^Parameter \\#1 \\$array_arg of function next expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php + + - + message: "#^Parameter \\#1 \\$array_arg of function reset expects array, array\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Blob/Stream.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_BlobContainer\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/BlobContainer.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_BlobContainer\\:\\:__get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/BlobContainer.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_DynamicTableEntity\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/DynamicTableEntity.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_DynamicTableEntity\\:\\:__get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/DynamicTableEntity.php + + - + message: "#^Undefined variable\\: \\$type$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/DynamicTableEntity.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_DynamicTableEntity\\:\\:setAzureValues\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/DynamicTableEntity.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Queue\\:\\:createQueueIfNotExists\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Queue\\:\\:deleteQueue\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Cannot access property \\$Queues on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Cannot access property \\$NextMarker on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Call to function is_null\\(\\) with SimpleXMLElement will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, SimpleXMLElement given\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Call to function is_null\\(\\) with string will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Queue\\:\\:putMessage\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Default value of the parameter \\#2 \\$numOfMessages \\(1\\) of method Zend_Service_WindowsAzure_Storage_Queue\\:\\:getMessages\\(\\) is incompatible with type string\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Default value of the parameter \\#4 \\$peek \\(false\\) of method Zend_Service_WindowsAzure_Storage_Queue\\:\\:getMessages\\(\\) is incompatible with type string\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, array\\\\|SimpleXMLElement given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Parameter \\#6 \\$dequeueCount of class Zend_Service_WindowsAzure_Storage_QueueMessage constructor expects int, string given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Default value of the parameter \\#2 \\$numOfMessages \\(1\\) of method Zend_Service_WindowsAzure_Storage_Queue\\:\\:peekMessages\\(\\) is incompatible with type string\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Parameter \\#4 \\$peek of method Zend_Service_WindowsAzure_Storage_Queue\\:\\:getMessages\\(\\) expects string, true given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Queue\\:\\:clearMessages\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Right side of && is always true\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Queue.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_StorageEntityAbstract\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/StorageEntityAbstract.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_StorageEntityAbstract\\:\\:__get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/StorageEntityAbstract.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Table\\:\\:setThrowExceptionOnMissingData\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Table\\:\\:getThrowExceptionOnMissingData\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Parameter \\#4 \\$headers of method Zend_Service_WindowsAzure_Storage_Table\\:\\:_performRequest\\(\\) expects array, null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Parameter \\#1 \\$var of function count expects array\\|Countable, SimpleXMLElement given\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Cannot call method xpath\\(\\) on SimpleXMLElement\\|false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Cannot access offset 0 on array\\\\|false\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Cannot access property \\$id on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Cannot access property \\$link on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Cannot access property \\$updated on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Table\\:\\:createTableIfNotExists\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Table\\:\\:deleteTable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Cannot call method attributes\\(\\) on SimpleXMLElement\\|false\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Offset 'etag' does not exist on SimpleXMLElement\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Service_WindowsAzure_Storage_TableEntity\\:\\:setTimestamp\\(\\) expects DateTime, bool\\|DateTime given\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Table\\:\\:deleteEntity\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Parameter \\#2 \\$start of function substr expects int, int\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Parameter \\#3 \\$length of function substr expects int, int\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^If condition is always true\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Table\\:\\:updateEntity\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Table\\:\\:mergeEntity\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Cannot call method getPartitionKey\\(\\) on Zend_Service_WindowsAzure_Storage_TableEntity\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Cannot call method getRowKey\\(\\) on Zend_Service_WindowsAzure_Storage_TableEntity\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Cannot call method getAzureValues\\(\\) on Zend_Service_WindowsAzure_Storage_TableEntity\\|null\\.$#" + count: 2 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Cannot call method setTimestamp\\(\\) on Zend_Service_WindowsAzure_Storage_TableEntity\\|null\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Right side of && is always true\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_Table\\:\\:_changeEntity\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Service_WindowsAzure_Storage_TableEntity\\:\\:setEtag\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Parameter \\#1 \\$value of method Zend_Service_WindowsAzure_Storage_Table\\:\\:_convertToDateTime\\(\\) expects DateTime\\|string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/Table.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_TableEntity\\:\\:setPartitionKey\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/TableEntity.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_TableEntity\\:\\:setRowKey\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/TableEntity.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_TableEntity\\:\\:setTimestamp\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/TableEntity.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_TableEntity\\:\\:setEtag\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/TableEntity.php + + - + message: "#^Method Zend_Service_WindowsAzure_Storage_TableEntity\\:\\:setAzureValues\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/TableEntity.php + + - + message: "#^Parameter \\#1 \\$argument of class ReflectionClass constructor expects class\\-string\\\\|T of object, string given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/TableEntity.php + + - + message: "#^Parameter \\#1 \\$haystack of function strpos expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/TableEntity.php + + - + message: "#^Parameter \\#2 \\$str of function explode expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/TableEntity.php + + - + message: "#^Parameter \\#1 \\$str of function addslashes expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Service/WindowsAzure/Storage/TableEntityQuery.php + + - + message: "#^Parameter \\#1 \\$dom of static method Zend_Service_Yahoo\\:\\:_checkErrors\\(\\) expects DOMDocument, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 7 + path: library/Zend/Service/Yahoo.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Yahoo_InlinkDataResultSet constructor expects DOMDocument, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Yahoo_ImageResultSet constructor expects DOMDocument, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Yahoo_LocalResultSet constructor expects DOMDocument, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Yahoo_NewsResultSet constructor expects DOMDocument, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Yahoo_PageDataResultSet constructor expects DOMDocument, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Yahoo_VideoResultSet constructor expects DOMDocument, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Yahoo_WebResultSet constructor expects DOMDocument, DOMDocument\\|SimpleXMLElement\\|false given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo.php + + - + message: "#^Parameter \\#1 \\$options of class Zend_Validate_Between constructor expects array\\|Zend_Config, int given\\.$#" + count: 7 + path: library/Zend/Service/Yahoo.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Service/Yahoo.php + + - + message: "#^Cannot access property \\$data on DOMNode\\|null\\.$#" + count: 1 + path: library/Zend/Service/Yahoo.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Service/Yahoo.php + + - + message: "#^Parameter \\#1 \\$doc of class DOMXPath constructor expects DOMDocument, DOMDocument\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/Image.php + + - + message: "#^Cannot access property \\$data on DOMNode\\|null\\.$#" + count: 3 + path: library/Zend/Service/Yahoo/Image.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 3 + path: library/Zend/Service/Yahoo/Image.php + + - + message: "#^Parameter \\#1 \\$result of class Zend_Service_Yahoo_ImageResult constructor expects DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/ImageResultSet.php + + - + message: "#^Parameter \\#1 \\$result of class Zend_Service_Yahoo_InlinkDataResult constructor expects DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/InlinkDataResultSet.php + + - + message: "#^Cannot access property \\$data on DOMNode\\|null\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/LocalResultSet.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/LocalResultSet.php + + - + message: "#^Parameter \\#1 \\$result of class Zend_Service_Yahoo_LocalResult constructor expects DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/LocalResultSet.php + + - + message: "#^Parameter \\#1 \\$result of class Zend_Service_Yahoo_NewsResult constructor expects DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/NewsResultSet.php + + - + message: "#^Parameter \\#1 \\$result of class Zend_Service_Yahoo_PageDataResult constructor expects DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/PageDataResultSet.php + + - + message: "#^Access to an undefined property Zend_Service_Yahoo_Result\\:\\:\\$_namespace\\.$#" + count: 2 + path: library/Zend/Service/Yahoo/Result.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\|false\\.$#" + count: 2 + path: library/Zend/Service/Yahoo/Result.php + + - + message: "#^Cannot access property \\$data on DOMNode\\|null\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/Result.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 2 + path: library/Zend/Service/Yahoo/Result.php + + - + message: "#^Access to an undefined property Zend_Service_Yahoo_Result\\:\\:\\$Thumbnail\\.$#" + count: 2 + path: library/Zend/Service/Yahoo/Result.php + + - + message: "#^Parameter \\#1 \\$dom of class Zend_Service_Yahoo_Image constructor expects DOMNode, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/Result.php + + - + message: "#^Cannot call method getAttribute\\(\\) on DOMElement\\|null\\.$#" + count: 3 + path: library/Zend/Service/Yahoo/ResultSet.php + + - + message: "#^Access to an undefined property Zend_Service_Yahoo_ResultSet\\:\\:\\$_namespace\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/ResultSet.php + + - + message: "#^Property Zend_Service_Yahoo_ResultSet\\:\\:\\$_results \\(DOMNodeList\\) does not accept DOMNodeList\\|false\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/ResultSet.php + + - + message: "#^Parameter \\#1 \\$result of class Zend_Service_Yahoo_VideoResult constructor expects DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/VideoResultSet.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\|false\\.$#" + count: 2 + path: library/Zend/Service/Yahoo/WebResult.php + + - + message: "#^Access to an undefined property DOMNode\\:\\:\\$data\\.$#" + count: 2 + path: library/Zend/Service/Yahoo/WebResult.php + + - + message: "#^Parameter \\#1 \\$result of class Zend_Service_Yahoo_WebResult constructor expects DOMElement, DOMNode\\|null given\\.$#" + count: 1 + path: library/Zend/Service/Yahoo/WebResultSet.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: library/Zend/Tag/Cloud.php + + - + message: "#^Method Zend_Tag_Taggable\\:\\:setParam\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tag/Taggable.php + + - + message: "#^Method Zend_Tool_Framework_Action_Interface\\:\\:getName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Action/Interface.php + + - + message: "#^Method Zend_Tool_Framework_Action_Repository\\:\\:setRegistry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Action/Repository.php + + - + message: "#^Method Zend_Tool_Framework_Action_Repository\\:\\:addAction\\(\\) has parameter \\$overrideExistingAction with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Action/Repository.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:__construct\\(\\) has parameter \\$options with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:setOptions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:initialize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Cannot call method getManifestRepository\\(\\) on Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Cannot call method getLoader\\(\\) on Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Cannot call method getActionRepository\\(\\) on Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Cannot call method getProviderRepository\\(\\) on Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Cannot call method getResponse\\(\\) on Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:_preInit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:_preDispatch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:_postDispatch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:getRegistry\\(\\) should return Zend_Tool_Framework_Registry_Interface but returns Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:promptInteractiveInput\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:promptInteractiveInput\\(\\) has parameter \\$inputRequest with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Parameter \\#1 \\$client of method Zend_Tool_Framework_Client_Interactive_InputHandler\\:\\:setClient\\(\\) expects Zend_Tool_Framework_Client_Interactive_InputInterface, \\$this\\(Zend_Tool_Framework_Client_Abstract\\) given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:dispatch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Cannot call method getRequest\\(\\) on Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 7 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:convertToClientNaming\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:convertToClientNaming\\(\\) has parameter \\$string with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:convertFromClientNaming\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:convertFromClientNaming\\(\\) has parameter \\$string with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:_handleDispatch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:_handleDispatchExecution\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:_handleDispatchExecution\\(\\) has parameter \\$callParameters with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:_handleDispatchExecution\\(\\) has parameter \\$class with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Client_Abstract\\:\\:_handleDispatchExecution\\(\\) has parameter \\$methodName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(mixed, mixed\\) given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(mixed, string\\) given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Abstract.php + + - + message: "#^Property Zend_Tool_Framework_Client_Config\\:\\:\\$_configFilepath has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Config.php + + - + message: "#^Method Zend_Tool_Framework_Client_Config\\:\\:__config\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Config.php + + - + message: "#^Method Zend_Tool_Framework_Client_Config\\:\\:setOptions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Config.php + + - + message: "#^Method Zend_Tool_Framework_Client_Config\\:\\:loadConfig\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Config.php + + - + message: "#^Method Zend_Tool_Framework_Client_Config\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Config.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console\\:\\:main\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console\\:\\:main\\(\\) has parameter \\$options with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console\\:\\:setConfigOptions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console\\:\\:setStorageOptions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console\\:\\:setClassesToLoad\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console\\:\\:_preInit\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Cannot call method getConfig\\(\\) on Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Cannot call method getStorage\\(\\) on Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Cannot call method setLoader\\(\\) on Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console\\:\\:_preDispatch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Cannot call method getResponse\\(\\) on Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Parameter \\#1 \\$registry of method Zend_Tool_Framework_Client_Console_ArgumentParser\\:\\:setRegistry\\(\\) expects Zend_Tool_Framework_Registry_Interface, Zend_Tool_Framework_Registry_Interface\\|null given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console\\:\\:_postDispatch\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Cannot call method getRequest\\(\\) on Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Parameter \\#1 \\$registry of method Zend_Tool_Framework_Client_Console_HelpSystem\\:\\:setRegistry\\(\\) expects Zend_Tool_Framework_Registry_Interface, Zend_Tool_Framework_Registry_Interface\\|null given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Parameter \\#1 \\$str of function rtrim expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console\\:\\:handleInteractiveOutput\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Console.php + + - + message: "#^Property Zend_Tool_Framework_Client_Console_ArgumentParser\\:\\:\\$_argumentsOriginal has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ArgumentParser.php + + - + message: "#^Property Zend_Tool_Framework_Client_Console_ArgumentParser\\:\\:\\$_argumentsWorking has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ArgumentParser.php + + - + message: "#^Property Zend_Tool_Framework_Client_Console_ArgumentParser\\:\\:\\$_helpKnownAction has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ArgumentParser.php + + - + message: "#^Property Zend_Tool_Framework_Client_Console_ArgumentParser\\:\\:\\$_helpKnownProvider has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ArgumentParser.php + + - + message: "#^Property Zend_Tool_Framework_Client_Console_ArgumentParser\\:\\:\\$_helpKnownSpecialty has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ArgumentParser.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 6 + path: library/Zend/Tool/Framework/Client/Console/ArgumentParser.php + + - + message: "#^Call to an undefined method Zend_Tool_Framework_Manifest_Metadata\\:\\:getActionName\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ArgumentParser.php + + - + message: "#^Call to an undefined method Zend_Tool_Framework_Manifest_Metadata\\:\\:getProviderName\\(\\)\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Console/ArgumentParser.php + + - + message: "#^Call to an undefined method Zend_Tool_Framework_Manifest_Metadata\\:\\:getSpecialtyName\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ArgumentParser.php + + - + message: "#^Call to an undefined method Zend_Tool_Framework_Manifest_Metadata\\:\\:getValue\\(\\)\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Console/ArgumentParser.php + + - + message: "#^Call to an undefined method Zend_Tool_Framework_Manifest_Metadata\\:\\:getReference\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ArgumentParser.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console_ArgumentParser\\:\\:_createHelpResponse\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ArgumentParser.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console_HelpSystem\\:\\:respondWithErrorMessage\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Parameter \\#1 \\$content of method Zend_Tool_Framework_Client_Response\\:\\:appendContent\\(\\) expects string, null given\\.$#" + count: 3 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Call to an undefined method Zend_Tool_Framework_Manifest_Metadata\\:\\:getActionName\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Call to an undefined method Zend_Tool_Framework_Manifest_Metadata\\:\\:getProviderName\\(\\)\\.$#" + count: 3 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Call to an undefined method Zend_Tool_Framework_Manifest_Metadata\\:\\:getReference\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Variable \\$displayActionNames might not be defined\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^If condition is always true\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Parameter \\#1 \\$providerMetadata of method Zend_Tool_Framework_Client_Console_HelpSystem\\:\\:_respondWithProviderName\\(\\) expects Zend_Tool_Framework_Metadata_Tool, Zend_Tool_Framework_Manifest_Metadata given\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Parameter \\#1 \\$providerMetadata of method Zend_Tool_Framework_Client_Console_HelpSystem\\:\\:_respondWithCommand\\(\\) expects Zend_Tool_Framework_Metadata_Tool, Zend_Tool_Framework_Manifest_Metadata given\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Parameter \\#2 \\$actionMetadata of method Zend_Tool_Framework_Client_Console_HelpSystem\\:\\:_respondWithCommand\\(\\) expects Zend_Tool_Framework_Metadata_Tool, Zend_Tool_Framework_Manifest_Metadata given\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Parameter \\#3 \\$specialtyMetadata of method Zend_Tool_Framework_Client_Console_HelpSystem\\:\\:_respondWithCommand\\(\\) expects Zend_Tool_Framework_Metadata_Tool, Zend_Tool_Framework_Manifest_Metadata given\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Parameter \\#4 \\$parameterLongMetadata of method Zend_Tool_Framework_Client_Console_HelpSystem\\:\\:_respondWithCommand\\(\\) expects Zend_Tool_Framework_Metadata_Tool, Zend_Tool_Framework_Manifest_Metadata given\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Result of && is always false\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Right side of \\|\\| is always false\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Call to an undefined method Zend_Tool_Framework_Manifest_Metadata\\:\\:getValue\\(\\)\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Client/Console/HelpSystem.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console_Manifest\\:\\:getIndex\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/Manifest.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console_ResponseDecorator_AlignCenter\\:\\:getName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ResponseDecorator/AlignCenter.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console_ResponseDecorator_AlignCenter\\:\\:decorate\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ResponseDecorator/AlignCenter.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console_ResponseDecorator_Blockize\\:\\:getName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ResponseDecorator/Blockize.php + + - + message: "#^Property Zend_Tool_Framework_Client_Console_ResponseDecorator_Colorizer\\:\\:\\$_colorOptions has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ResponseDecorator/Colorizer.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console_ResponseDecorator_Colorizer\\:\\:getName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ResponseDecorator/Colorizer.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console_ResponseDecorator_Colorizer\\:\\:decorate\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ResponseDecorator/Colorizer.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console_ResponseDecorator_Colorizer\\:\\:decorate\\(\\) has parameter \\$color with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ResponseDecorator/Colorizer.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console_ResponseDecorator_Colorizer\\:\\:decorate\\(\\) has parameter \\$content with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ResponseDecorator/Colorizer.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console_ResponseDecorator_Indention\\:\\:getName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ResponseDecorator/Indention.php + + - + message: "#^Method Zend_Tool_Framework_Client_Console_ResponseDecorator_Indention\\:\\:decorate\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ResponseDecorator/Indention.php + + - + message: "#^Argument of an invalid type array\\\\|false supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Console/ResponseDecorator/Indention.php + + - + message: "#^Property Zend_Tool_Framework_Client_Interactive_InputHandler\\:\\:\\$_inputRequest has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputHandler.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputHandler\\:\\:setClient\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputHandler.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputHandler\\:\\:setInputRequest\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputHandler.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputHandler\\:\\:setInputRequest\\(\\) has parameter \\$inputRequest with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputHandler.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputHandler\\:\\:handle\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputHandler.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputInterface\\:\\:getMissingParameterPromptString\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputInterface\\:\\:getMissingParameterPromptString\\(\\) has parameter \\$missingParameterName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputInterface.php + + - + message: "#^Property Zend_Tool_Framework_Client_Interactive_InputRequest\\:\\:\\$_content has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputRequest.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputRequest\\:\\:__construct\\(\\) has parameter \\$content with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputRequest.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputRequest\\:\\:setContent\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputRequest.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputRequest\\:\\:setContent\\(\\) has parameter \\$content with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputRequest.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputRequest\\:\\:getContent\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputRequest.php + + - + message: "#^Property Zend_Tool_Framework_Client_Interactive_InputResponse\\:\\:\\$_content has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputResponse.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputResponse\\:\\:__construct\\(\\) has parameter \\$content with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputResponse.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputResponse\\:\\:setContent\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputResponse.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputResponse\\:\\:setContent\\(\\) has parameter \\$content with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputResponse.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_InputResponse\\:\\:getContent\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/InputResponse.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_OutputInterface\\:\\:handleInteractiveOutput\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/OutputInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Interactive_OutputInterface\\:\\:handleInteractiveOutput\\(\\) has parameter \\$string with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Interactive/OutputInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Manifest\\:\\:getIndex\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Manifest.php + + - + message: "#^Method Zend_Tool_Framework_Client_Response_ContentDecorator_Interface\\:\\:getName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Response/ContentDecorator/Interface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Response_ContentDecorator_Interface\\:\\:decorate\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Response/ContentDecorator/Interface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Response_ContentDecorator_Interface\\:\\:decorate\\(\\) has parameter \\$content with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Response/ContentDecorator/Interface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Response_ContentDecorator_Interface\\:\\:decorate\\(\\) has parameter \\$decoratorValue with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Response/ContentDecorator/Interface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Response_ContentDecorator_Separator\\:\\:decorate\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Response/ContentDecorator/Separator.php + + - + message: "#^Method Zend_Tool_Framework_Client_Response_ContentDecorator_Separator\\:\\:decorate\\(\\) has parameter \\$content with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Response/ContentDecorator/Separator.php + + - + message: "#^Method Zend_Tool_Framework_Client_Response_ContentDecorator_Separator\\:\\:decorate\\(\\) has parameter \\$decoratorValue with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Response/ContentDecorator/Separator.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:__construct\\(\\) has parameter \\$options with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:setAdapter\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:setAdapter\\(\\) has parameter \\$adapter with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:isEnabled\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:put\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:put\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:put\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 5 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:get\\(\\) has parameter \\$defaultValue with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:get\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:has\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:has\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:remove\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:remove\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:getStreamUri\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage\\:\\:getStreamUri\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_AdapterInterface\\:\\:put\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/AdapterInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_AdapterInterface\\:\\:put\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/AdapterInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_AdapterInterface\\:\\:put\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/AdapterInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_AdapterInterface\\:\\:get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/AdapterInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_AdapterInterface\\:\\:get\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/AdapterInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_AdapterInterface\\:\\:has\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/AdapterInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_AdapterInterface\\:\\:has\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/AdapterInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_AdapterInterface\\:\\:remove\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/AdapterInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_AdapterInterface\\:\\:remove\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/AdapterInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_AdapterInterface\\:\\:getStreamUri\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/AdapterInterface.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_AdapterInterface\\:\\:getStreamUri\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/AdapterInterface.php + + - + message: "#^Property Zend_Tool_Framework_Client_Storage_Directory\\:\\:\\$_directoryPath has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_Directory\\:\\:__construct\\(\\) has parameter \\$directoryPath with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_Directory\\:\\:put\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_Directory\\:\\:put\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_Directory\\:\\:put\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_Directory\\:\\:get\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_Directory\\:\\:get\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_Directory\\:\\:has\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_Directory\\:\\:has\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_Directory\\:\\:remove\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_Directory\\:\\:remove\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_Directory\\:\\:getStreamUri\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Client_Storage_Directory\\:\\:getStreamUri\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Client/Storage/Directory.php + + - + message: "#^Method Zend_Tool_Framework_Loader_Abstract\\:\\:load\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Loader/Abstract.php + + - + message: "#^Parameter \\#1 \\$manifest of method Zend_Tool_Framework_Manifest_Repository\\:\\:addManifest\\(\\) expects Zend_Tool_Framework_Manifest_Interface, object given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Loader/Abstract.php + + - + message: "#^Parameter \\#1 \\$provider of method Zend_Tool_Framework_Provider_Repository\\:\\:addProvider\\(\\) expects Zend_Tool_Framework_Provider_Interface, object given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Loader/Abstract.php + + - + message: "#^Method Zend_Tool_Framework_Loader_BasicLoader\\:\\:__construct\\(\\) has parameter \\$options with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Loader/BasicLoader.php + + - + message: "#^Method Zend_Tool_Framework_Loader_BasicLoader\\:\\:setOptions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Loader/BasicLoader.php + + - + message: "#^Parameter \\#1 \\$manifest of method Zend_Tool_Framework_Manifest_Repository\\:\\:addManifest\\(\\) expects Zend_Tool_Framework_Manifest_Interface, object given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Loader/BasicLoader.php + + - + message: "#^Parameter \\#1 \\$provider of method Zend_Tool_Framework_Provider_Repository\\:\\:addProvider\\(\\) expects Zend_Tool_Framework_Provider_Interface, object given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Loader/BasicLoader.php + + - + message: "#^Property Zend_Tool_Framework_Loader_IncludePathLoader_RecursiveFilterIterator\\:\\:\\$_denyDirectoryPattern has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Loader/IncludePathLoader/RecursiveFilterIterator.php + + - + message: "#^Property Zend_Tool_Framework_Loader_IncludePathLoader_RecursiveFilterIterator\\:\\:\\$_acceptFilePattern has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Loader/IncludePathLoader/RecursiveFilterIterator.php + + - + message: "#^Access to an undefined property Zend_Tool_Framework_Loader_IncludePathLoader_RecursiveFilterIterator\\:\\:\\$ref\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Loader/IncludePathLoader/RecursiveFilterIterator.php + + - + message: "#^Call to an undefined method Iterator\\:\\:getChildren\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Loader/IncludePathLoader/RecursiveFilterIterator.php + + - + message: "#^Method Zend_Tool_Framework_Manifest_Repository\\:\\:getMetadata\\(\\) should return Zend_Tool_Framework_Manifest_Metadata but returns Zend_Tool_Framework_Manifest_Metadata\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Manifest/Repository.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Attributable\\:\\:getAttributes\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Attributable.php + + - + message: "#^Property Zend_Tool_Framework_Metadata_Basic\\:\\:\\$_type has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Basic.php + + - + message: "#^Property Zend_Tool_Framework_Metadata_Basic\\:\\:\\$_name has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Basic.php + + - + message: "#^Property Zend_Tool_Framework_Metadata_Basic\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Basic.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Basic\\:\\:getAttributes\\(\\) has parameter \\$stringRepresentationOfNonScalars with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Basic.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Dynamic\\:\\:__construct\\(\\) has parameter \\$options with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Dynamic.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Dynamic\\:\\:setOptions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Dynamic.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Dynamic\\:\\:getAttributes\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Dynamic.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Dynamic\\:\\:__unset\\(\\) with return type void returns null but should not return anything\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Dynamic.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Dynamic\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Dynamic.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Interface\\:\\:getType\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Interface.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Interface\\:\\:getName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Interface.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Interface\\:\\:getValue\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Interface.php + + - + message: "#^Property Zend_Tool_Framework_Metadata_Tool\\:\\:\\$_clientName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Tool.php + + - + message: "#^Property Zend_Tool_Framework_Metadata_Tool\\:\\:\\$_actionName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Tool.php + + - + message: "#^Property Zend_Tool_Framework_Metadata_Tool\\:\\:\\$_providerName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Tool.php + + - + message: "#^Property Zend_Tool_Framework_Metadata_Tool\\:\\:\\$_specialtyName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Tool.php + + - + message: "#^Property Zend_Tool_Framework_Metadata_Tool\\:\\:\\$_clientReference has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Tool.php + + - + message: "#^Property Zend_Tool_Framework_Metadata_Tool\\:\\:\\$_actionReference has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Tool.php + + - + message: "#^Property Zend_Tool_Framework_Metadata_Tool\\:\\:\\$_providerReference has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Tool.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Tool\\:\\:setClientName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Tool.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Tool\\:\\:setClientName\\(\\) has parameter \\$clientName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Tool.php + + - + message: "#^Method Zend_Tool_Framework_Metadata_Tool\\:\\:getClientName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Metadata/Tool.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Initializable\\:\\:initialize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Initializable.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Repository\\:\\:addProvider\\(\\) has parameter \\$overwriteExistingProvider with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Repository.php + + - + message: "#^Parameter \\#1 \\$registry of method Zend_Tool_Framework_Registry_EnabledInterface\\:\\:setRegistry\\(\\) expects Zend_Tool_Framework_Registry_Interface, Zend_Tool_Framework_Registry_Interface\\|null given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Repository.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Repository\\:\\:hasProvider\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Repository.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Repository\\:\\:hasProvider\\(\\) has parameter \\$processedOnly with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Repository.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Repository\\:\\:hasProvider\\(\\) has parameter \\$providerOrClassName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Repository.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Repository\\:\\:process\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Repository.php + + - + message: "#^Parameter \\#1 \\$provider of class Zend_Tool_Framework_Provider_Signature constructor expects Zend_Tool_Framework_Provider_Interface, Zend_Tool_Framework_Provider_Interface\\|null given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Repository.php + + - + message: "#^Parameter \\#1 \\$registry of method Zend_Tool_Framework_Provider_Signature\\:\\:setRegistry\\(\\) expects Zend_Tool_Framework_Registry_Interface, Zend_Tool_Framework_Registry_Interface\\|null given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Repository.php + + - + message: "#^Parameter \\#1 \\$str of function strtolower expects string, int\\|string given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Repository.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Signature\\:\\:process\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Signature.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Signature\\:\\:getName\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Signature.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Signature\\:\\:getProvider\\(\\) should return Zend_Tool_Framework_Provider_Interface but returns Zend_Tool_Framework_Provider_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Signature.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Signature\\:\\:getActionableMethodByActionName\\(\\) has parameter \\$specialtyName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Signature.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Signature\\:\\:_process\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Signature.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Signature\\:\\:_processName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Signature.php + + - + message: "#^Parameter \\#1 \\$object of function method_exists expects object\\|string, Zend_Tool_Framework_Provider_Interface\\|null given\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Signature.php + + - + message: "#^Parameter \\#1 \\$object of function get_class expects object, Zend_Tool_Framework_Provider_Interface\\|null given\\.$#" + count: 3 + path: library/Zend/Tool/Framework/Provider/Signature.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Signature\\:\\:_processSpecialties\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Signature.php + + - + message: "#^Cannot call method getSpecialties\\(\\) on Zend_Tool_Framework_Provider_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Signature.php + + - + message: "#^Method Zend_Tool_Framework_Provider_Signature\\:\\:_processActionableMethods\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Provider/Signature.php + + - + message: "#^Cannot call method getActionRepository\\(\\) on Zend_Tool_Framework_Registry_Interface\\|null\\.$#" + count: 2 + path: library/Zend/Tool/Framework/Provider/Signature.php + + - + message: "#^Method Zend_Tool_Framework_Registry\\:\\:reset\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Registry.php + + - + message: "#^Method Zend_Tool_Framework_Registry\\:\\:__set\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Registry.php + + - + message: "#^Call to an undefined method object\\:\\:setRegistry\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Registry.php + + - + message: "#^Method Zend_Tool_Framework_Registry_EnabledInterface\\:\\:setRegistry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/Registry/EnabledInterface.php + + - + message: "#^Call to an undefined method Zend_Tool_Framework_Registry_Interface\\:\\:getConfig\\(\\)\\.$#" + count: 2 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Config\\:\\:_printTree\\(\\) has parameter \\$isLast with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Config\\:\\:enable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Config\\:\\:disable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Config\\:\\:enableProvider\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Parameter \\#1 \\$argument of class ReflectionClass constructor expects class\\-string\\\\|T of object, string given\\.$#" + count: 2 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Config\\:\\:_doEnable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Config\\:\\:_doEnable\\(\\) has parameter \\$className with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Access to an undefined property Zend_Tool_Framework_Client_Config\\:\\:\\$basicloader\\.$#" + count: 2 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Binary operation \"\\+\" between int\\|string and 1 results in an error\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Config\\:\\:enableManifest\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Config\\:\\:disableManifest\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Config\\:\\:disableProvider\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Config.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Manifest\\:\\:setRegistry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Manifest.php + + - + message: "#^Access to an undefined property Zend_Tool_Framework_System_Provider_Manifest\\:\\:\\$_registry\\.$#" + count: 3 + path: library/Zend/Tool/Framework/System/Provider/Manifest.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Manifest\\:\\:getName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Manifest.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Manifest\\:\\:show\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Manifest.php + + - + message: "#^Parameter \\#2 \\$prefix of function http_build_query expects string, null given\\.$#" + count: 2 + path: library/Zend/Tool/Framework/System/Provider/Manifest.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Phpinfo\\:\\:showAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Phpinfo.php + + - + message: "#^Property Zend_Tool_Framework_System_Provider_Version\\:\\:\\$_specialties has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Version.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Version\\:\\:setRegistry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Version.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Version\\:\\:show\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Version.php + + - + message: "#^Access to an undefined property Zend_Tool_Framework_Registry_Interface\\:\\:\\$response\\.$#" + count: 4 + path: library/Zend/Tool/Framework/System/Provider/Version.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Version\\:\\:showMajorPart\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Version.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Version\\:\\:showMajorPart\\(\\) has parameter \\$nameIncluded with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Version.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Version\\:\\:showMinorPart\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Version.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Version\\:\\:showMinorPart\\(\\) has parameter \\$nameIncluded with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Version.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Version\\:\\:showMiniPart\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Version.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Version\\:\\:showMiniPart\\(\\) has parameter \\$nameIncluded with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Version.php + + - + message: "#^Method Zend_Tool_Framework_System_Provider_Version\\:\\:_splitVersion\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Framework/System/Provider/Version.php + + - + message: "#^Binary operation \"\\.\" between string and Zend_Tool_Project_Context_Interface results in an error\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Content/Engine/Phtml.php + + - + message: "#^Method Zend_Tool_Project_Context_Content_Engine_Phtml\\:\\:getContent\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Content/Engine/Phtml.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:getContext\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Filesystem/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Context_Filesystem_Abstract\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Filesystem/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Context_Filesystem_Abstract\\:\\:delete\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Filesystem/Abstract.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource\\:\\:create\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Filesystem/Directory.php + + - + message: "#^Property Zend_Tool_Project_Context_Filesystem_File\\:\\:\\$_fileOnlyContext has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Filesystem/File.php + + - + message: "#^Property Zend_Tool_Project_Context_Filesystem_File\\:\\:\\$_content has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Filesystem/File.php + + - + message: "#^Method Zend_Tool_Project_Context_Filesystem_File\\:\\:setResource\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Filesystem/File.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource\\:\\:create\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Filesystem/File.php + + - + message: "#^Method Zend_Tool_Project_Context_Filesystem_File\\:\\:_initFileOnlyContext\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Filesystem/File.php + + - + message: "#^Method Zend_Tool_Project_Context_Interface\\:\\:getName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Interface.php + + - + message: "#^Property Zend_Tool_Project_Context_Repository\\:\\:\\$_instance has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Property Zend_Tool_Project_Context_Repository\\:\\:\\$_isInitialized has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Property Zend_Tool_Project_Context_Repository\\:\\:\\$_shortContextNames has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Property Zend_Tool_Project_Context_Repository\\:\\:\\$_contexts has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:resetInstance\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:addContextsFromDirectory\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:addContextsFromDirectory\\(\\) has parameter \\$directory with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:addContextsFromDirectory\\(\\) has parameter \\$prefix with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:addContextClass\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:addContextClass\\(\\) has parameter \\$contextClass with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Binary operation \"\\+\" between int\\|string and 1 results in an error\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:getContext\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:getContext\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:hasContext\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:hasContext\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:isSystemContext\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:isSystemContext\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:isTopLevelContext\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:isTopLevelContext\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:isOverwritableContext\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:isOverwritableContext\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:count\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:_normalizeName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Method Zend_Tool_Project_Context_Repository\\:\\:_normalizeName\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Repository.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_System_ProjectProfileFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/System/ProjectProfileFile.php + + - + message: "#^Method Zend_Tool_Project_Context_System_ProjectProvidersDirectory\\:\\:loadProviders\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/System/ProjectProvidersDirectory.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_AbstractClassFile\\:\\:getFullClassName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/AbstractClassFile.php + + - + message: "#^Right side of && is always true\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/AbstractClassFile.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:getContext\\(\\)\\.$#" + count: 2 + path: library/Zend/Tool/Project/Context/Zf/ActionMethod.php + + - + message: "#^Access to an undefined property Zend_Tool_Project_Context_Zf_ApplicationConfigFile\\:\\:\\$_type\\.$#" + count: 2 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_Zf_ApplicationConfigFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Property Zend_Tool_Project_Context_Zf_ApplicationConfigFile\\:\\:\\$_content \\(string\\) does not accept string\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationConfigFile\\:\\:getAsZendConfig\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationConfigFile\\:\\:getAsZendConfig\\(\\) has parameter \\$section with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Argument of an invalid type array\\\\|false supplied for foreach, only iterables are supported\\.$#" + count: 2 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Cannot access offset \\(float\\|int\\) on array\\\\|false\\.$#" + count: 2 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Cannot assign offset \\(float\\|int\\) to array\\\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationConfigFile\\:\\:removeStringItem\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationConfigFile\\:\\:removeStringItem\\(\\) has parameter \\$key with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationConfigFile\\:\\:removeStringItem\\(\\) has parameter \\$section with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationConfigFile\\:\\:removeItem\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationConfigFile\\:\\:removeItem\\(\\) has parameter \\$item with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationConfigFile\\:\\:removeItem\\(\\) has parameter \\$section with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationConfigFile\\:\\:_getDefaultContents\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationConfigFile.php + + - + message: "#^Property Zend_Tool_Project_Context_Zf_ApplicationDirectory\\:\\:\\$_classNamePrefix has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationDirectory.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationDirectory\\:\\:init\\(\\) should return Zend_Tool_Project_Context_Filesystem_Abstract but return statement is missing\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationDirectory.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationDirectory\\:\\:setClassNamePrefix\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationDirectory.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationDirectory\\:\\:setClassNamePrefix\\(\\) has parameter \\$classNamePrefix with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationDirectory.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ApplicationDirectory\\:\\:getClassNamePrefix\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ApplicationDirectory.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_BootstrapFile\\:\\:init\\(\\) should return Zend_Tool_Project_Context_Filesystem_File but return statement is missing\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/BootstrapFile.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_Zf_BootstrapFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/BootstrapFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_BootstrapFile\\:\\:getApplicationInstance\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/BootstrapFile.php + + - + message: "#^Cannot call method exists\\(\\) on string\\|Zend_Tool_Project_Context_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/BootstrapFile.php + + - + message: "#^Cannot call method getContext\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/BootstrapFile.php + + - + message: "#^Cannot call method getPath\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 2 + path: library/Zend/Tool/Project/Context/Zf/BootstrapFile.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_Zf_ConfigFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ConfigFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ControllerFile\\:\\:init\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ControllerFile.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_Zf_ControllerFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ControllerFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ControllerFile\\:\\:addAction\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ControllerFile.php + + - + message: "#^Property Zend_Tool_Project_Context_Zf_DbTableFile\\:\\:\\$_dbTableName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/DbTableFile.php + + - + message: "#^Property Zend_Tool_Project_Context_Zf_DbTableFile\\:\\:\\$_actualTableName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/DbTableFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_DbTableFile\\:\\:init\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/DbTableFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_DbTableFile\\:\\:getContents\\(\\) should return null but returns string\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/DbTableFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_DocsDirectory\\:\\:create\\(\\) should return Zend_Tool_Project_Context_Filesystem_Directory but return statement is missing\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/DocsDirectory.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_FormFile\\:\\:init\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/FormFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_FormFile\\:\\:getFormName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/FormFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_FormFile\\:\\:getContents\\(\\) should return null but returns string\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/FormFile.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_Zf_HtaccessFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/HtaccessFile.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_Zf_LayoutScriptFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/LayoutScriptFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ModelFile\\:\\:init\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ModelFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ModelFile\\:\\:getModelName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ModelFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ModelFile\\:\\:getContents\\(\\) should return null but returns string\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ModelFile.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_Zf_ProjectProviderFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ProjectProviderFile.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_Zf_PublicIndexFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/PublicIndexFile.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:getContext\\(\\)\\.$#" + count: 2 + path: library/Zend/Tool/Project/Context/Zf/TestApplicationActionMethod.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:getForControllerName\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/TestApplicationActionMethod.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:getName\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/TestApplicationActionMethod.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:getForModuleName\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/TestApplicationActionMethod.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_TestApplicationControllerFile\\:\\:getForControllerName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/TestApplicationControllerFile.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_Zf_TestApplicationControllerFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/TestApplicationControllerFile.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:getName\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/TestApplicationControllerFile.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:getForModuleName\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/TestApplicationControllerFile.php + + - + message: "#^Parameter \\#1 \\$str of function ltrim expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/TestLibraryFile.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_Zf_TestLibraryFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/TestLibraryFile.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_Zf_TestPHPUnitBootstrapFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/TestPHPUnitBootstrapFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_TestPHPUnitConfigFile\\:\\:getContents\\(\\) should return null but returns string\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/TestPHPUnitConfigFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ViewControllerScriptsDirectory\\:\\:_convertControllerNameToFilesystemName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ViewControllerScriptsDirectory.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ViewControllerScriptsDirectory\\:\\:_convertControllerNameToFilesystemName\\(\\) has parameter \\$controllerName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ViewControllerScriptsDirectory.php + + - + message: "#^Return type \\(string\\) of method Zend_Tool_Project_Context_Zf_ViewScriptFile\\:\\:getContents\\(\\) should be compatible with return type \\(null\\) of method Zend_Tool_Project_Context_Filesystem_File\\:\\:getContents\\(\\)$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ViewScriptFile.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:getName\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ViewScriptFile.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:getModuleName\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ViewScriptFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ViewScriptFile\\:\\:_convertActionNameToFilesystemName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ViewScriptFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ViewScriptFile\\:\\:_convertActionNameToFilesystemName\\(\\) has parameter \\$actionName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ViewScriptFile.php + + - + message: "#^Method Zend_Tool_Project_Context_Zf_ZfStandardLibraryDirectory\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ZfStandardLibraryDirectory.php + + - + message: "#^Parameter \\#1 \\$str of function preg_quote expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ZfStandardLibraryDirectory.php + + - + message: "#^Parameter \\#3 \\$subject of function preg_replace expects array\\|string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Context/Zf/ZfStandardLibraryDirectory.php + + - + message: "#^Access to an undefined property Zend_Tool_Project_Profile\\:\\:\\$_topResources\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile.php + + - + message: "#^Method Zend_Tool_Project_Profile\\:\\:setOptions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile.php + + - + message: "#^Method Zend_Tool_Project_Profile\\:\\:loadFromData\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile.php + + - + message: "#^Method Zend_Tool_Project_Profile\\:\\:loadFromFile\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile.php + + - + message: "#^Parameter \\#1 \\$data of method Zend_Tool_Project_Profile_FileParser_Xml\\:\\:unserialize\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile.php + + - + message: "#^Method Zend_Tool_Project_Profile\\:\\:storeToFile\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile.php + + - + message: "#^Method Zend_Tool_Project_Profile_FileParser_Interface\\:\\:unserialize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/FileParser/Interface.php + + - + message: "#^Parameter \\#1 \\$resources of method Zend_Tool_Project_Profile_FileParser_Xml\\:\\:_serializeRecurser\\(\\) expects array, Zend_Tool_Project_Profile given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/FileParser/Xml.php + + - + message: "#^Parameter \\#1 \\$importednode of method DOMDocument\\:\\:importNode\\(\\) expects DOMNode, DOMElement\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/FileParser/Xml.php + + - + message: "#^Method Zend_Tool_Project_Profile_FileParser_Xml\\:\\:_serializeRecurser\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/FileParser/Xml.php + + - + message: "#^Method Zend_Tool_Project_Profile_FileParser_Xml\\:\\:_unserializeRecurser\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/FileParser/Xml.php + + - + message: "#^Parameter \\#1 \\$context of class Zend_Tool_Project_Profile_Resource constructor expects string\\|Zend_Tool_Project_Context_Interface, string\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/FileParser/Xml.php + + - + message: "#^Cannot call method attributes\\(\\) on SimpleXMLIterator\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/FileParser/Xml.php + + - + message: "#^Method Zend_Tool_Project_Profile_Resource_Container\\:\\:append\\(\\) invoked with 2 parameters, 1 required\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/FileParser/Xml.php + + - + message: "#^Method Zend_Tool_Project_Profile_FileParser_Xml\\:\\:_lazyLoadContexts\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/FileParser/Xml.php + + - + message: "#^Method Zend_Tool_Project_Profile_Iterator_ContextFilter\\:\\:setOptions\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Iterator/ContextFilter.php + + - + message: "#^Access to an undefined property Zend_Tool_Project_Profile_Iterator_ContextFilter\\:\\:\\$ref\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Iterator/ContextFilter.php + + - + message: "#^Call to an undefined method Iterator\\:\\:getChildren\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Iterator/ContextFilter.php + + - + message: "#^Property Zend_Tool_Project_Profile_Resource\\:\\:\\$_deleted has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Resource.php + + - + message: "#^Property Zend_Tool_Project_Profile_Resource\\:\\:\\$_enabled has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Resource.php + + - + message: "#^Parameter \\#1 \\$object of function method_exists expects object\\|string, string\\|Zend_Tool_Project_Context_Interface\\|null given\\.$#" + count: 2 + path: library/Zend/Tool/Project/Profile/Resource.php + + - + message: "#^Cannot call method getName\\(\\) on string\\|Zend_Tool_Project_Context_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Resource.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(string\\|Zend_Tool_Project_Context_Interface\\|null, string\\) given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Resource.php + + - + message: "#^Method Zend_Tool_Project_Profile_Resource_Container\\:\\:search\\(\\) has parameter \\$nonMatchSearchConstraints with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Resource/Container.php + + - + message: "#^Access to an undefined property ArrayObject\\:\\:\\$name\\.$#" + count: 2 + path: library/Zend/Tool/Project/Profile/Resource/Container.php + + - + message: "#^Access to an undefined property ArrayObject\\:\\:\\$params\\.$#" + count: 2 + path: library/Zend/Tool/Project/Profile/Resource/Container.php + + - + message: "#^Elseif branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Resource/Container.php + + - + message: "#^Instanceof between \\*NEVER\\* and Zend_Tool_Project_Context_Interface will always evaluate to false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Resource/Container.php + + - + message: "#^Access to an undefined property Zend_Tool_Project_Profile_Resource_Container\\:\\:\\$_parentResource\\.$#" + count: 2 + path: library/Zend/Tool/Project/Profile/Resource/Container.php + + - + message: "#^Cannot cast \\$this\\(Zend_Tool_Project_Profile_Resource_Container\\) to string\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Resource/Container.php + + - + message: "#^Method Zend_Tool_Project_Profile_Resource_Container\\:\\:key\\(\\) should return int but returns int\\|string\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Resource/Container.php + + - + message: "#^Variable \\$name might not be defined\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Resource/SearchConstraints.php + + - + message: "#^Variable \\$params might not be defined\\.$#" + count: 1 + path: library/Zend/Tool/Project/Profile/Resource/SearchConstraints.php + + - + message: "#^Property Zend_Tool_Project_Provider_Abstract\\:\\:\\$_projectPath has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:initialize\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Cannot call method search\\(\\) on Zend_Tool_Project_Profile\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Cannot call method loadProviders\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:getContextClasses\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:_findProfileDirectory\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:_findProfileDirectory\\(\\) has parameter \\$projectDirectory with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:_findProfileDirectory\\(\\) has parameter \\$searchParentDirectories with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:_getProfile\\(\\) has parameter \\$loadProfileFlag with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:_storeProfile\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Cannot call method getContext\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Cannot call method getPath\\(\\) on string\\|Zend_Tool_Project_Context_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Cannot call method save\\(\\) on string\\|Zend_Tool_Project_Context_Interface\\|null\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:_getContentForContext\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:_getContentForContext\\(\\) has parameter \\$methodName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:_getContentForContext\\(\\) has parameter \\$parameters with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Call to an undefined method Zend_Tool_Framework_Registry_Interface\\:\\:getStorage\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:_hasProjectProviderDirectory\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:_hasProjectProviderDirectory\\(\\) has parameter \\$pathToProfileFile with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Parameter \\#1 \\$haystack of function strstr expects string, string\\|false given\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Method Zend_Tool_Project_Provider_Abstract\\:\\:_loadContextClassesIntoRegistry\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Abstract.php + + - + message: "#^Cannot call method createResource\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Action.php + + - + message: "#^Method Zend_Tool_Project_Provider_Action\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Action.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:getContext\\(\\)\\.$#" + count: 4 + path: library/Zend/Tool/Project/Provider/Action.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource\\:\\:create\\(\\)\\.$#" + count: 3 + path: library/Zend/Tool/Project/Provider/Action.php + + - + message: "#^Cannot call method getPath\\(\\) on string\\|Zend_Tool_Project_Context_Interface\\|null\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/Action.php + + - + message: "#^Property Zend_Tool_Project_Provider_Application\\:\\:\\$_specialties has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Application.php + + - + message: "#^Method Zend_Tool_Project_Provider_Application\\:\\:changeClassNamePrefix\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Application.php + + - + message: "#^Cannot call method search\\(\\) on Zend_Tool_Project_Profile\\|false\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/Application.php + + - + message: "#^Cannot call method getAsZendConfig\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Application.php + + - + message: "#^Cannot call method removeStringItem\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Application.php + + - + message: "#^Cannot call method create\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/Application.php + + - + message: "#^Cannot call method addStringItem\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Application.php + + - + message: "#^Cannot call method setClassNamePrefix\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Application.php + + - + message: "#^Method Zend_Tool_Project_Provider_Controller\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Controller.php + + - + message: "#^Method Zend_Tool_Project_Provider_Controller\\:\\:create\\(\\) has parameter \\$module with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Controller.php + + - + message: "#^Cannot call method getPath\\(\\) on string\\|Zend_Tool_Project_Context_Interface\\|null\\.$#" + count: 4 + path: library/Zend/Tool/Project/Provider/Controller.php + + - + message: "#^Variable \\$indexActionViewResource might not be defined\\.$#" + count: 3 + path: library/Zend/Tool/Project/Provider/Controller.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:getContext\\(\\)\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/Controller.php + + - + message: "#^Variable \\$testActionResource might not be defined\\.$#" + count: 4 + path: library/Zend/Tool/Project/Provider/Controller.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource\\:\\:create\\(\\)\\.$#" + count: 4 + path: library/Zend/Tool/Project/Provider/Controller.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource_Container\\:\\:create\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Controller.php + + - + message: "#^Property Zend_Tool_Project_Provider_DbAdapter\\:\\:\\$_appConfigFilePath has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Property Zend_Tool_Project_Provider_DbAdapter\\:\\:\\$_config has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Property Zend_Tool_Project_Provider_DbAdapter\\:\\:\\$_sectionName has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbAdapter\\:\\:configure\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbAdapter\\:\\:configure\\(\\) has parameter \\$dsn with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbAdapter\\:\\:configure\\(\\) has parameter \\$sectionName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Cannot call method search\\(\\) on Zend_Tool_Project_Profile\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource\\:\\:getPath\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbAdapter\\:\\:_configureViaDSN\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbAdapter\\:\\:_configureViaDSN\\(\\) has parameter \\$dsn with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Cannot call method addItem\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Cannot call method getContents\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Cannot call method create\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbAdapter\\:\\:_cleanMagicQuotesInValues\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbAdapter\\:\\:_cleanMagicQuotesInValues\\(\\) has parameter \\$key with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbAdapter\\:\\:_cleanMagicQuotesInValues\\(\\) has parameter \\$value with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbAdapter.php + + - + message: "#^Property Zend_Tool_Project_Provider_DbTable\\:\\:\\$_specialties has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:createResource\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:createResource\\(\\) has parameter \\$actualTableName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:createResource\\(\\) has parameter \\$dbTableName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:createResource\\(\\) has parameter \\$moduleName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:hasResource\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:hasResource\\(\\) has parameter \\$dbTableName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:hasResource\\(\\) has parameter \\$moduleName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:create\\(\\) has parameter \\$actualTableName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:create\\(\\) has parameter \\$forceOverwrite with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:create\\(\\) has parameter \\$module with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:create\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Cannot call method getApplicationInstance\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:_convertTableNameToClassName\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_DbTable\\:\\:_convertTableNameToClassName\\(\\) has parameter \\$tableName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/DbTable.php + + - + message: "#^Method Zend_Tool_Project_Provider_Form\\:\\:createResource\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Method Zend_Tool_Project_Provider_Form\\:\\:createResource\\(\\) has parameter \\$formName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Method Zend_Tool_Project_Provider_Form\\:\\:createResource\\(\\) has parameter \\$moduleName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Cannot call method search\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Method Zend_Tool_Project_Provider_Form\\:\\:enable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Method Zend_Tool_Project_Provider_Form\\:\\:enable\\(\\) has parameter \\$module with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Cannot call method isEnabled\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Cannot call method getContext\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Cannot call method getPath\\(\\) on string\\|Zend_Tool_Project_Context_Interface\\|null\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Cannot call method setEnabled\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Cannot call method create\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Method Zend_Tool_Project_Provider_Form\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^If condition is always false\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Variable \\$testFormResource might not be defined\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/Form.php + + - + message: "#^Method Zend_Tool_Project_Provider_Layout\\:\\:createResource\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Method Zend_Tool_Project_Provider_Layout\\:\\:createResource\\(\\) has parameter \\$layoutName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Cannot call method search\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Cannot call method createResource\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Method Zend_Tool_Project_Provider_Layout\\:\\:enable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Cannot call method search\\(\\) on Zend_Tool_Project_Profile\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource\\:\\:getAsZendConfig\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource\\:\\:addStringItem\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource\\:\\:create\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Parameter \\#1 \\$profile of static method Zend_Tool_Project_Provider_Layout\\:\\:createResource\\(\\) expects Zend_Tool_Project_Profile, Zend_Tool_Project_Profile\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Method Zend_Tool_Project_Provider_Layout\\:\\:disable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Parameter \\#1 \\$profile of method Zend_Tool_Project_Provider_Layout\\:\\:_getApplicationConfigResource\\(\\) expects Zend_Tool_Project_Profile, Zend_Tool_Project_Profile\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Method Zend_Tool_Project_Provider_Layout\\:\\:_getApplicationConfigResource\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Layout.php + + - + message: "#^Method Zend_Tool_Project_Provider_Model\\:\\:createResource\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Model.php + + - + message: "#^Method Zend_Tool_Project_Provider_Model\\:\\:createResource\\(\\) has parameter \\$modelName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Model.php + + - + message: "#^Method Zend_Tool_Project_Provider_Model\\:\\:createResource\\(\\) has parameter \\$moduleName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Model.php + + - + message: "#^Method Zend_Tool_Project_Provider_Model\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Model.php + + - + message: "#^If condition is always false\\.$#" + count: 3 + path: library/Zend/Tool/Project/Provider/Model.php + + - + message: "#^Method Zend_Tool_Project_Provider_Module\\:\\:createResources\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Module.php + + - + message: "#^Method Zend_Tool_Project_Provider_Module\\:\\:createResources\\(\\) has parameter \\$moduleName with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Module.php + + - + message: "#^Cannot call method search\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Module.php + + - + message: "#^Cannot call method createResource\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Module.php + + - + message: "#^Parameter \\#1 \\$iterator of class Zend_Tool_Project_Profile_Iterator_ContextFilter constructor expects RecursiveIterator, Zend_Tool_Project_Profile_Resource\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Module.php + + - + message: "#^Variable \\$currentChildResource might not be defined\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Module.php + + - + message: "#^Comparison operation \"\\>\" between int\\ and 0 is always false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Module.php + + - + message: "#^Method Zend_Tool_Project_Provider_Module\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Module.php + + - + message: "#^Cannot call method removeStringItem\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Module.php + + - + message: "#^Cannot call method addStringItem\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/Module.php + + - + message: "#^Cannot call method create\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Module.php + + - + message: "#^Method Zend_Tool_Project_Provider_Profile\\:\\:show\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Profile.php + + - + message: "#^Property Zend_Tool_Project_Provider_Project\\:\\:\\$_specialties has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Project.php + + - + message: "#^Method Zend_Tool_Project_Provider_Project\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Project.php + + - + message: "#^Parameter \\#3 \\$subject of function str_replace expects array\\|string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Project.php + + - + message: "#^Parameter \\#2 \\$projectDirectory of method Zend_Tool_Project_Provider_Abstract\\:\\:_loadProfile\\(\\) expects string\\|null, string\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Project.php + + - + message: "#^Call to an undefined method Zend_Tool_Framework_Registry_Interface\\:\\:getStorage\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Project.php + + - + message: "#^Method Zend_Tool_Project_Provider_Project\\:\\:show\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Project.php + + - + message: "#^Method Zend_Tool_Project_Provider_Project\\:\\:showInfo\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Project.php + + - + message: "#^Method Zend_Tool_Project_Provider_Project\\:\\:_getDefaultProfile\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Project.php + + - + message: "#^Method Zend_Tool_Project_Provider_Project\\:\\:getDefaultReadmeContents\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Project.php + + - + message: "#^Method Zend_Tool_Project_Provider_Project\\:\\:getDefaultReadmeContents\\(\\) has parameter \\$caller with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Project.php + + - + message: "#^Parameter \\#1 \\$str of function ltrim expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Project.php + + - + message: "#^Variable \\$name might not be defined\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Project.php + + - + message: "#^Method Zend_Tool_Project_Provider_ProjectProvider\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/ProjectProvider.php + + - + message: "#^Method Zend_Tool_Project_Provider_ProjectProvider\\:\\:create\\(\\) has parameter \\$actions with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/ProjectProvider.php + + - + message: "#^Method Zend_Tool_Project_Provider_ProjectProvider\\:\\:create\\(\\) has parameter \\$name with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/ProjectProvider.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource\\:\\:getPath\\(\\)\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/ProjectProvider.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource\\:\\:create\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/ProjectProvider.php + + - + message: "#^Property Zend_Tool_Project_Provider_Test\\:\\:\\$_specialties has no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Cannot call method isEnabled\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Method Zend_Tool_Project_Provider_Test\\:\\:isPHPUnitAvailable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Cannot call method search\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 3 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Cannot call method createResource\\(\\) on Zend_Tool_Project_Profile_Resource\\|false\\.$#" + count: 3 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Variable \\$libraryFileResource might not be defined\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Method Zend_Tool_Project_Provider_Test\\:\\:enable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Method Zend_Tool_Project_Provider_Test\\:\\:disable\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Method Zend_Tool_Project_Provider_Test\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Parameter \\#1 \\$profile of static method Zend_Tool_Project_Provider_Test\\:\\:isTestingEnabled\\(\\) expects Zend_Tool_Project_Profile, Zend_Tool_Project_Profile\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Parameter \\#1 \\$profile of static method Zend_Tool_Project_Provider_Test\\:\\:createLibraryResource\\(\\) expects Zend_Tool_Project_Profile, Zend_Tool_Project_Profile\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Cannot call method getPath\\(\\) on string\\|Zend_Tool_Project_Context_Interface\\|null\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource\\:\\:create\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/Test.php + + - + message: "#^Method Zend_Tool_Project_Provider_View\\:\\:create\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/View.php + + - + message: "#^Method Zend_Tool_Project_Provider_View\\:\\:create\\(\\) has parameter \\$module with no typehint specified\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/View.php + + - + message: "#^Parameter \\#1 \\$profile of static method Zend_Tool_Project_Provider_View\\:\\:createResource\\(\\) expects Zend_Tool_Project_Profile, Zend_Tool_Project_Profile\\|false given\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/View.php + + - + message: "#^Method Zend_Tool_Framework_Registry_Interface\\:\\:getResponse\\(\\) invoked with 1 parameter, 0 required\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/View.php + + - + message: "#^Cannot call method getPath\\(\\) on string\\|Zend_Tool_Project_Context_Interface\\|null\\.$#" + count: 2 + path: library/Zend/Tool/Project/Provider/View.php + + - + message: "#^Call to an undefined method Zend_Tool_Project_Profile_Resource\\:\\:create\\(\\)\\.$#" + count: 1 + path: library/Zend/Tool/Project/Provider/View.php + + - + message: "#^Parameter \\#1 \\$version1 of function version_compare expects string, string\\|null given\\.$#" + count: 1 + path: library/Zend/Version.php + + - + message: "#^Static property Zend_Version\\:\\:\\$_latestVersion \\(string\\) does not accept string\\|false\\.$#" + count: 1 + path: library/Zend/Version.php + + - + message: "#^Method Zend_Version\\:\\:getLatest\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: library/Zend/Version.php + + - + message: "#^Strict comparison using \\=\\=\\= between string\\|Zend_Uri_Http and null will always evaluate to false\\.$#" + count: 1 + path: library/Zend/XmlRpc/Client.php + + - + message: "#^Parameter \\#1 \\$method of method Zend_XmlRpc_Client_ServerIntrospection\\:\\:getMethodSignature\\(\\) expects array, string given\\.$#" + count: 1 + path: library/Zend/XmlRpc/Client.php + + - + message: "#^Variable \\$signatures might not be defined\\.$#" + count: 2 + path: library/Zend/XmlRpc/Client.php + + - + message: "#^Cannot call method getMessage\\(\\) on Zend_XmlRpc_Fault\\|null\\.$#" + count: 1 + path: library/Zend/XmlRpc/Client.php + + - + message: "#^Cannot call method getCode\\(\\) on Zend_XmlRpc_Fault\\|null\\.$#" + count: 1 + path: library/Zend/XmlRpc/Client.php + + - + message: "#^Method Zend_XmlRpc_Client\\:\\:_createRequest\\(\\) has parameter \\$method with no typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Client.php + + - + message: "#^Method Zend_XmlRpc_Client\\:\\:_createRequest\\(\\) has parameter \\$params with no typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Client.php + + - + message: "#^Call to an undefined method Zend_XmlRpc_Client_ServerProxy\\:\\:multicall\\(\\)\\.$#" + count: 1 + path: library/Zend/XmlRpc/Client/ServerIntrospection.php + + - + message: "#^Call to an undefined method Zend_XmlRpc_Client_ServerProxy\\:\\:methodSignature\\(\\)\\.$#" + count: 1 + path: library/Zend/XmlRpc/Client/ServerIntrospection.php + + - + message: "#^Binary operation \"\\.\" between 'Invalid signature…' and array results in an error\\.$#" + count: 1 + path: library/Zend/XmlRpc/Client/ServerIntrospection.php + + - + message: "#^Call to an undefined method Zend_XmlRpc_Client_ServerProxy\\:\\:listMethods\\(\\)\\.$#" + count: 1 + path: library/Zend/XmlRpc/Client/ServerIntrospection.php + + - + message: "#^Method Zend_XmlRpc_Fault\\:\\:__construct\\(\\) has parameter \\$code with no typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Fault.php + + - + message: "#^Method Zend_XmlRpc_Fault\\:\\:__construct\\(\\) has parameter \\$message with no typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Fault.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 2 + path: library/Zend/XmlRpc/Fault.php + + - + message: "#^Method Zend_XmlRpc_Generator_DomDocument\\:\\:_writeTextData\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Generator/DomDocument.php + + - + message: "#^Call to an undefined method Zend_XmlRpc_Generator_GeneratorAbstract\\:\\:_init\\(\\)\\.$#" + count: 2 + path: library/Zend/XmlRpc/Generator/GeneratorAbstract.php + + - + message: "#^Method Zend_XmlRpc_Generator_GeneratorAbstract\\:\\:stripDeclaration\\(\\) should return string but returns string\\|null\\.$#" + count: 1 + path: library/Zend/XmlRpc/Generator/GeneratorAbstract.php + + - + message: "#^Method Zend_XmlRpc_Generator_GeneratorAbstract\\:\\:_openElement\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Generator/GeneratorAbstract.php + + - + message: "#^Method Zend_XmlRpc_Generator_GeneratorAbstract\\:\\:_writeTextData\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Generator/GeneratorAbstract.php + + - + message: "#^Method Zend_XmlRpc_Generator_GeneratorAbstract\\:\\:_closeElement\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Generator/GeneratorAbstract.php + + - + message: "#^Parameter \\#1 \\$msg of class Zend_XmlRpc_Server_Exception constructor expects string, int given\\.$#" + count: 1 + path: library/Zend/XmlRpc/Request/Stdin.php + + - + message: "#^Array has 2 duplicate keys with value 'time' \\('time', 'time'\\)\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func_array expects callable\\(\\)\\: mixed, array\\(Zend_XmlRpc_Server_System, string\\) given\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Result of && is always false\\.$#" + count: 3 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Default value of the parameter \\#1 \\$request \\(false\\) of method Zend_XmlRpc_Server\\:\\:handle\\(\\) is incompatible with type Zend_XmlRpc_Request\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Result of \\|\\| is always false\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Cannot call method setEncoding\\(\\) on Zend_XmlRpc_Fault\\|Zend_XmlRpc_Response\\|Zend_XmlRpc_Server_Exception\\|null\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Else branch is unreachable because previous condition is always true\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Return type \\(array\\) of method Zend_XmlRpc_Server\\:\\:getFunctions\\(\\) should be compatible with return type \\(Zend_Server_Definition\\) of method Zend_Server_Abstract\\:\\:getFunctions\\(\\)$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Access to an undefined property Zend_XmlRpc_Server\\:\\:\\$_system\\.$#" + count: 2 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Method Zend_XmlRpc_Server\\:\\:sendArgumentsToAllMethods\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Method Zend_XmlRpc_Server\\:\\:sendArgumentsToAllMethods\\(\\) has parameter \\$flag with no typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^PHPDoc tag @throws with type Exception\\|Zend_XmlRpcServer_Exception is not subtype of Throwable$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Cannot call method getInvokeArguments\\(\\) on Zend_Server_Method_Definition\\|false\\|null\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Cannot call method getPrototypes\\(\\) on Zend_Server_Method_Definition\\|false\\|null\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Parameter \\#1 \\$invocable of method Zend_Server_Abstract\\:\\:_dispatch\\(\\) expects Zend_Server_Method_Definition, Zend_Server_Method_Definition\\|false\\|null given\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server.php + + - + message: "#^Parameter \\#1 \\$function of function call_user_func expects callable\\(\\)\\: mixed, array\\(int\\|string, 'observe'\\) given\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server/Fault.php + + - + message: "#^Cannot call method getMethodHelp\\(\\) on Zend_Server_Method_Definition\\|false\\|null\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server/System.php + + - + message: "#^Cannot call method toArray\\(\\) on Zend_Server_Method_Definition\\|false\\|null\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server/System.php + + - + message: "#^Parameter \\#2 \\$return of function var_export expects bool, int given\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server/System.php + + - + message: "#^Cannot call method isFault\\(\\) on Zend_XmlRpc_Response\\|Zend_XmlRpc_Server_Exception\\|null\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server/System.php + + - + message: "#^Cannot call method getReturnValue\\(\\) on Zend_XmlRpc_Response\\|Zend_XmlRpc_Server_Exception\\|null\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server/System.php + + - + message: "#^Call to an undefined method Zend_XmlRpc_Fault\\|Zend_XmlRpc_Response\\|Zend_XmlRpc_Server_Exception\\:\\:getCode\\(\\)\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server/System.php + + - + message: "#^Call to an undefined method Zend_XmlRpc_Fault\\|Zend_XmlRpc_Response\\|Zend_XmlRpc_Server_Exception\\:\\:getMessage\\(\\)\\.$#" + count: 1 + path: library/Zend/XmlRpc/Server/System.php + + - + message: "#^Property Zend_XmlRpc_Value\\:\\:\\$_value has no typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Property Zend_XmlRpc_Value\\:\\:\\$_type has no typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Property Zend_XmlRpc_Value\\:\\:\\$_xml has no typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Negated boolean expression is always false\\.$#" + count: 1 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Instantiated class Zend_XmlRpc_Generator_GeneratorAbstract is abstract\\.$#" + count: 1 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Call to an undefined method Zend_XmlRpc_Value\\:\\:_generateXml\\(\\)\\.$#" + count: 1 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Method Zend_XmlRpc_Value\\:\\:_createSimpleXMLElement\\(\\) has no return typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Method Zend_XmlRpc_Value\\:\\:_createSimpleXMLElement\\(\\) has parameter \\$xml with no typehint specified\\.$#" + count: 1 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Parameter \\#1 \\$array_arg of function key expects array, SimpleXMLElement given\\.$#" + count: 2 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Parameter \\#1 \\$array_arg of function current expects array, SimpleXMLElement given\\.$#" + count: 2 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Parameter \\#1 \\$array_arg of function next expects array, SimpleXMLElement given\\.$#" + count: 2 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Parameter \\#2 \\$subject of function preg_match expects string, string\\|false given\\.$#" + count: 1 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Parameter \\#3 \\$subject of function str_replace expects array\\|string, string\\|false given\\.$#" + count: 1 + path: library/Zend/XmlRpc/Value.php + + - + message: "#^Return type \\(string\\) of method Zend_XmlRpc_Value_BigInteger\\:\\:getValue\\(\\) should be compatible with return type \\(int\\) of method Zend_XmlRpc_Value_Integer\\:\\:getValue\\(\\)$#" + count: 1 + path: library/Zend/XmlRpc/Value/BigInteger.php + + - + message: "#^Strict comparison using \\=\\=\\= between DateTime and false will always evaluate to false\\.$#" + count: 1 + path: library/Zend/XmlRpc/Value/DateTime.php + diff --git a/phpstan-bootstrap.php b/phpstan-bootstrap.php index 89020cdffb..1c5b5dd4a6 100644 --- a/phpstan-bootstrap.php +++ b/phpstan-bootstrap.php @@ -1,105 +1,5 @@ getClass()->setMethod(array('name' => 'foobar')); - + $expectedOutput = <<assertEquals($targetLength, strlen($lines[2])); - $this->assertEquals(';', $lines[2]{$targetLength-1}); + $this->assertEquals(';', $lines[2][$targetLength-1]); } /** @@ -327,7 +327,7 @@ public function bar2() $this->assertEquals($target, $codeGenFile->generate()); } - + /** * @group ZF-11703 */ diff --git a/tests/Zend/Queue/Adapter/AdapterTest.php b/tests/Zend/Queue/Adapter/AdapterTest.php index 1442bb6a4d..79ee1bd704 100644 --- a/tests/Zend/Queue/Adapter/AdapterTest.php +++ b/tests/Zend/Queue/Adapter/AdapterTest.php @@ -679,7 +679,7 @@ public function testVisibility() // keep in mind that some queue services are on forigen machines and need network time. if (false) { // easy comment/uncomment, set to true or false - $this->markTestSkipped('Visibility testing takes ' . $default_timeout+$extra_delay . ' seconds per adapter, if you wish to test this, uncomment the test case in ' . __FILE__ . ' line ' . __LINE__); + $this->markTestSkipped('Visibility testing takes ' . ($default_timeout + $extra_delay) . ' seconds per adapter, if you wish to test this, uncomment the test case in ' . __FILE__ . ' line ' . __LINE__); return; } diff --git a/tests/runalltests.php b/tests/runalltests.php index 7fcb57ffd9..46a2562c5e 100755 --- a/tests/runalltests.php +++ b/tests/runalltests.php @@ -25,7 +25,7 @@ $_SERVER['TRAVIS_PHP_VERSION'] = $phpMajor . '.' . $phpMinor; } -$PHPUNIT = '../bin/phpunit'; +$PHPUNIT = __DIR__ . '/../bin/phpunit'; if (!is_executable($PHPUNIT)) { echo "PHPUnit is not executable ($PHPUNIT)";