diff --git a/.appveyor.yml b/.appveyor.yml deleted file mode 100644 index 289c2adb77d2a..0000000000000 --- a/.appveyor.yml +++ /dev/null @@ -1,82 +0,0 @@ -image: Visual Studio 2022 -build: false -platform: - - x64 -clone_folder: C:\projects\joomla-cms - -## Build matrix for lowest and highest possible targets -environment: - PHPBuild: "x64" - matrix: - - php_ver_target: 8.1 - - -init: - - SET PATH=C:\Tools\php;%PATH% - - SET COMPOSER_NO_INTERACTION=1 - - SET ANSICON=121x90 (121x90) - -## Install PHP and composer, and run the appropriate composer command -install: - - ps: >- - appveyor-retry choco install --no-progress --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version ((choco search php --exact --all-versions -r | select-string -pattern $env:php_ver_target | sort { [version]($_ -split '\|' | select -last 1) } -Descending | Select-Object -first 1) -replace '[php|]','') - - cd C:\tools\php - - copy php.ini-production php.ini /Y - - echo date.timezone="UTC" >> php.ini - - echo extension_dir=ext >> php.ini - - echo extension=php_openssl.dll >> php.ini - - echo extension=php_mbstring.dll >> php.ini - - echo extension=php_fileinfo.dll >> php.ini - - IF %php_ver_target% LSS 8 echo extension=php_gd2.dll >> php.ini - - IF %php_ver_target% GEQ 8 echo extension=gd >> php.ini - - echo extension=php_gmp.dll >> php.ini - - echo extension=php_pgsql.dll >> php.ini - - echo extension=php_pdo_pgsql.dll >> php.ini - - echo extension=php_pdo_mysql.dll >> php.ini - - echo extension=php_mysqli.dll >> php.ini - - echo extension=php_curl.dll >> php.ini - - echo zend_extension=php_opcache.dll >> php.ini - - echo opcache.enable_cli=1 >> php.ini - - echo extension=php_ldap.dll >> php.ini - - choco install composer - - cd C:\projects\joomla-cms - - refreshenv - - echo "TODO Ignore platform reqs till all composer dependencies are compatible with php 8.1" - - composer install --no-progress --profile --ignore-platform-req=ext-sodium --ignore-platform-reqs - -hosts: - openldap: 127.0.0.1 - -services: - - iis - -before_test: -# Run openldap docker image - - ps: docker pull bitnami/openldap:2.6.3 - - ps: docker run --rm --name openldap --publish 1389:1389 --publish 1636:1636 -v ${pwd}\tests\certs:/certificates --env LDAP_ADMIN_USERNAME=admin --env LDAP_ADMIN_PASSWORD=adminpassword --env LDAP_USERS=customuser --env LDAP_PASSWORDS=custompassword --env LDAP_ENABLE_TLS=yes --env LDAP_TLS_CERT_FILE=/certificates/openldap.crt --env LDAP_TLS_KEY_FILE=/certificates/openldap.key --env LDAP_TLS_CA_FILE=/certificates/CA.crt --env BITNAMI_DEBUG=true --env LDAP_CONFIG_ADMIN_ENABLED=yes --env LDAP_CONFIG_ADMIN_USERNAME=admin --env LDAP_CONFIG_ADMIN_PASSWORD=configpassword -d bitnami/openldap:2.6.3 -# Database setup for MySQL via PowerShell tools - - ps: Start-Service MySQL80 - - > - "C:\Program Files\MySQL\MySQL Server 8.0\bin\mysql" -u root -p"Password12!" -e "CREATE DATABASE IF NOT EXISTS test_joomla;" -# Wait till slapd has started - - ps: | - $Counter=0 - $Found=$false - While ( ! $Found -and $Counter -lt 60 ) { - $Found = ( docker logs openldap 2>&1 | Select-String -Quiet "\*\* Starting slapd \*\*" ) - Start-Sleep -Seconds 1 - $Counter++ - "$Counter Waiting for slapd" - } - if ( ! $Found ) { - Write-Error -Message "`nERROR: slapd not started (in time)!" -ErrorAction Stop - exit 1 - } - -test_script: - - cd C:\projects\joomla-cms - - libraries/vendor/bin/phpunit --testsuite Unit - - libraries/vendor/bin/phpunit --testsuite Integration --configuration tests/phpunit-appveyor.xml.dist - -on_failure: - - ps: docker logs openldap 2>&1 diff --git a/.drone.yml b/.drone.yml index 656603ed1520c..196d9880ab900 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,315 +1,3 @@ ---- -kind: pipeline -name: default - -clone: - -steps: - - name: setup - image: joomlaprojects/docker-images:php8.4 - volumes: - - name: certificates - path: /certificates - commands: - - cp -v tests/certs/* /certificates/ - - - name: composer - image: joomlaprojects/docker-images:php8.4 - volumes: - - name: composer-cache - path: /tmp/composer-cache - commands: - - composer validate --no-check-all --strict - - composer install --no-progress --ignore-platform-reqs - - - name: phpcs - image: joomlaprojects/docker-images:php8.1 - depends_on: [ composer ] - commands: - - echo $(date) - - ./libraries/vendor/bin/php-cs-fixer fix -vvv --dry-run --diff - - ./libraries/vendor/bin/phpcs --extensions=php -p --standard=ruleset.xml . - - echo $(date) - - - name: phpstan - image: joomlaprojects/docker-images:php8.2 - depends_on: [ phpcs ] - failure: ignore - commands: - - ./libraries/vendor/bin/phpstan - - - name: npm - image: node:20-bullseye-slim - depends_on: [ phpcs ] - volumes: - - name: npm-cache - path: /tmp/npm-cache - environment: - npm_config_cache: /tmp/npm-cache - commands: - - npm ci --unsafe-perm - - - name: php81-unit - depends_on: [ phpcs ] - image: joomlaprojects/docker-images:php8.1 - commands: - - php -v - - ./libraries/vendor/bin/phpunit --testsuite Unit - - - name: php82-unit - depends_on: [ phpcs ] - image: joomlaprojects/docker-images:php8.2 - commands: - - php -v - - ./libraries/vendor/bin/phpunit --testsuite Unit - - - name: php83-unit - depends_on: [ phpcs ] - image: joomlaprojects/docker-images:php8.3 - commands: - - php -v - - ./libraries/vendor/bin/phpunit --testsuite Unit - - - name: php84-unit - depends_on: [ phpcs ] - image: joomlaprojects/docker-images:php8.4 - commands: - - php -v - - ./libraries/vendor/bin/phpunit --testsuite Unit - - - name: php81-integration - depends_on: [ npm ] - image: joomlaprojects/docker-images:php8.1 - commands: - - php -v - - ./libraries/vendor/bin/phpunit --testsuite Integration - - - name: php82-integration - depends_on: [ npm ] - image: joomlaprojects/docker-images:php8.2 - commands: - - php -v - - ./libraries/vendor/bin/phpunit --testsuite Integration - - - name: php83-integration - depends_on: [ npm ] - image: joomlaprojects/docker-images:php8.3 - commands: - - php -v - - ./libraries/vendor/bin/phpunit --testsuite Integration - - - name: php84-integration - depends_on: [ npm ] - image: joomlaprojects/docker-images:php8.4 - commands: - - php -v - - ./libraries/vendor/bin/phpunit --testsuite Integration - - - name: php81-integration-pgsql - depends_on: [ npm ] - image: joomlaprojects/docker-images:php8.1 - commands: - - php -v - - ./libraries/vendor/bin/phpunit --testsuite Integration --configuration phpunit-pgsql.xml.dist - - - name: php82-integration-pgsql - depends_on: [ npm ] - image: joomlaprojects/docker-images:php8.2 - commands: - - php -v - - ./libraries/vendor/bin/phpunit --testsuite Integration --configuration phpunit-pgsql.xml.dist - - - name: php83-integration-pgsql - depends_on: [ npm ] - image: joomlaprojects/docker-images:php8.3 - commands: - - php -v - - ./libraries/vendor/bin/phpunit --testsuite Integration --configuration phpunit-pgsql.xml.dist - - - name: php84-integration-pgsql - depends_on: [ npm ] - image: joomlaprojects/docker-images:php8.4 - commands: - - php -v - - ./libraries/vendor/bin/phpunit --testsuite Integration --configuration phpunit-pgsql.xml.dist - - - name: scss-cs - depends_on: [ npm ] - image: node:current-alpine - commands: - - npm run lint:css - - - name: javascript-cs - depends_on: [ npm ] - image: node:current-alpine - commands: - - npm run lint:js - - npm run lint:testjs - - - name: prepare_system_tests - depends_on: - - npm - image: joomlaprojects/docker-images:cypress8.4 - volumes: - - name: cypress-cache - path: /root/.cache/Cypress - environment: - CYPRESS_VERIFY_TIMEOUT: 100000 - commands: - - cp cypress.config.dist.mjs cypress.config.mjs - - npx cypress install - - npx cypress verify - - - name: phpmin-system-mysql - depends_on: - - prepare_system_tests - image: joomlaprojects/docker-images:cypress8.1 - volumes: - - name: cypress-cache - path: /root/.cache/Cypress - environment: - JOOMLA_INSTALLATION_DISABLE_LOCALHOST_CHECK: 1 - commands: - - bash tests/System/entrypoint.sh "$(pwd)" cmysql mysqli mysql - - - name: phpmax-system-mysql - depends_on: - - phpmin-system-mysql - image: joomlaprojects/docker-images:cypress8.4 - volumes: - - name: cypress-cache - path: /root/.cache/Cypress - environment: - JOOMLA_INSTALLATION_DISABLE_LOCALHOST_CHECK: 1 - commands: - - bash tests/System/entrypoint.sh "$(pwd)" cmysqlmax mysqli mysql - when: - event: - exclude: - - pull_request - - - - name: phpmin-system-postgres - depends_on: - - prepare_system_tests - image: joomlaprojects/docker-images:cypress8.1 - volumes: - - name: cypress-cache - path: /root/.cache/Cypress - environment: - JOOMLA_INSTALLATION_DISABLE_LOCALHOST_CHECK: 1 - commands: - - bash tests/System/entrypoint.sh "$(pwd)" cpostgres pgsql postgres - when: - event: - exclude: - - pull_request - - - name: phpmax-system-postgres - depends_on: - - phpmin-system-postgres - image: joomlaprojects/docker-images:cypress8.4 - volumes: - - name: cypress-cache - path: /root/.cache/Cypress - environment: - JOOMLA_INSTALLATION_DISABLE_LOCALHOST_CHECK: 1 - commands: - - bash tests/System/entrypoint.sh "$(pwd)" cpostgresmax pgsql postgres - - - name: artifacts-system-tests - image: joomlaprojects/docker-images:packager - depends_on: - - phpmax-system-mysql - - phpmax-system-postgres - - phpmin-system-mysql - - phpmin-system-postgres - environment: - WEB_SERVER: - from_secret: webserver - FTP_KEY: - from_secret: ftp_key - FTP_USER: - from_secret: ftp_user - FTP_HOST: - from_secret: ftp_host - ARTIFACTS_ROOT: - from_secret: artifacts_root - GITHUB_TOKEN: - from_secret: github_token - commands: - - export PLUGIN_DEST_DIR=$DRONE_REPO/$DRONE_BRANCH/$DRONE_PULL_REQUEST/system-tests/$DRONE_BUILD_NUMBER - - echo https://$WEB_SERVER/drone/$PLUGIN_DEST_DIR - - mkdir -p ~/.ssh - - eval $(ssh-agent -s) - - echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config - - echo "$FTP_KEY" > ~/.ssh/id_rsa - - chmod 600 ~/.ssh/id_rsa - - ssh-add - - rclone config create artifacts sftp host $FTP_HOST user $FTP_USER port 22 - - rclone mkdir artifacts:$ARTIFACTS_ROOT/$DRONE_REPO/$DRONE_BRANCH/$DRONE_PULL_REQUEST/system-tests/$DRONE_BUILD_NUMBER - - rclone copy tests/System/output/ artifacts:$ARTIFACTS_ROOT/$DRONE_REPO/$DRONE_BRANCH/$DRONE_PULL_REQUEST/system-tests/$DRONE_BUILD_NUMBER - - 'curl -X POST "https://api.github.com/repos/$DRONE_REPO/statuses/$DRONE_COMMIT" -H "Content-Type: application/json" -H "Authorization: token $GITHUB_TOKEN" -d "{\"state\":\"failure\", \"context\": \"Artifacts from Failure\", \"description\": \"You can find artifacts from the failure of the build here:\", \"target_url\": \"https://$WEB_SERVER/drone/$PLUGIN_DEST_DIR\"}" > /dev/null' - when: - status: - - failure - -volumes: - - name: composer-cache - host: - path: /tmp/composer-cache - - name: cypress-cache - host: - path: /tmp/cypress-cache - - name: npm-cache - host: - path: /tmp/npm-cache - - name: certificates - host: - path: /tmp/certificates - -services: - - name: mysql - image: mysql:8.0 - command: ["--default-authentication-plugin=mysql_native_password"] - environment: - MYSQL_USER: joomla_ut - MYSQL_PASSWORD: joomla_ut - MYSQL_ROOT_PASSWORD: joomla_ut - MYSQL_DATABASE: test_joomla - - - name: postgres - image: postgres:12-alpine - ports: - - 5432 - environment: - POSTGRES_USER: root - POSTGRES_PASSWORD: joomla_ut - POSTGRES_DB: test_joomla - - - name: openldap - image: bitnami/openldap:latest - ports: - - 1389 - - 1636 - volumes: - - name: certificates - path: /certificates - environment: - LDAP_ADMIN_USERNAME: admin - LDAP_ADMIN_PASSWORD: adminpassword - LDAP_USERS: customuser - LDAP_PASSWORDS: custompassword - LDAP_ENABLE_TLS: yes - LDAP_TLS_CERT_FILE: /certificates/openldap.crt - LDAP_TLS_KEY_FILE: /certificates/openldap.key - LDAP_TLS_CA_FILE: /certificates/CA.crt - BITNAMI_DEBUG: true - LDAP_CONFIG_ADMIN_ENABLED: yes - LDAP_CONFIG_ADMIN_USERNAME: admin - LDAP_CONFIG_ADMIN_PASSWORD: configpassword - ---- kind: pipeline name: package @@ -415,6 +103,6 @@ trigger: --- kind: signature -hmac: 99da78521b10f37ddf6731e695fe52f85ee3db142bccac66901ae5372e332aae +hmac: 8c9f8d28fda74e2a6fc508602dd07e9af7d9f4a5a13af769c6a53e6bd6e91389 ... diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index bb3d40090994f..6041566aecfed 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -16,12 +16,13 @@ libraries/src/Installer/* @rdeutz libraries/src/Updater/* @rdeutz # Automated Testing +.github/workflows/ci.yml @rdeutz @hackwar @laoneo tests/* @hackwar @laoneo tests/Unit/* @rdeutz @laoneo -.appveyor.yml @rdeutz @hackwar @laoneo .drone.yml @rdeutz @hackwar @laoneo phpunit.xml.dist @rdeutz @hackwar @laoneo phpunit-pgsql.xml.dist @rdeutz @hackwar @laoneo +phpunit-windows.xml.dist @rdeutz @hackwar @laoneo # Workflow administrator/components/com_workflow/* @bembelimen @hleithner @@ -51,6 +52,7 @@ installation/tmpl/* @chmst # Translation GitHub Actions .github/workflows/create-translation-pull-request-v4.yml @hleithner +.github/workflows/create-translation-pull-request-v5.yml @hleithner # Libraries libraries/src/* @laoneo diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d8a0782b2dfc..4da057177dc7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -107,7 +107,7 @@ jobs: key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }} - name: Run PHPstan run: | - ./libraries/vendor/bin/phpstan --error-format=github || : + ./libraries/vendor/bin/phpstan --error-format=github tests-unit: name: Run Unit tests @@ -168,6 +168,67 @@ jobs: POSTGRES_PASSWORD: joomla_ut POSTGRES_DB: test_joomla + tests-unit-windows: + name: Run Unit tests (Windows) + runs-on: windows-latest + needs: [code-style-php] + strategy: + matrix: + php_version: ['8.1', '8.2', '8.3', '8.4'] + steps: + - uses: actions/checkout@v4 + - uses: actions/cache/restore@v4 + id: cache-php-windows + with: + path: libraries/vendor + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php_version }} + extensions: openssl, mbstring, fileinfo, gd, gmp, pgsql, mysql, mysqli, curl, opcache, ldap + ini-values: post_max_size=256M, date.timezone="UTC" + - name: Install Composer dependencies + if: steps.cache-php-windows.outputs.cache-hit != 'true' + run: composer install --no-progress --ignore-platform-reqs + - name: Run Unit tests + run: php libraries/vendor/bin/phpunit --testsuite Unit + + tests-integration-windows: + name: Run integration tests (Windows) + runs-on: windows-latest + needs: [code-style-php] + strategy: + matrix: + php_version: ['8.1', '8.2', '8.3', '8.4'] + steps: + - uses: actions/checkout@v4 + - uses: actions/cache/restore@v4 + with: + path: libraries/vendor + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + - uses: shogo82148/actions-setup-mysql@v1 + with: + mysql-version: "mariadb-10.4" + root-password: "joomla_ut" + user: "joomla_ut" + password: "joomla_ut" + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php_version }} + extensions: openssl, mbstring, fileinfo, gd, gmp, pgsql, mysql, mysqli, curl, opcache, ldap + ini-values: post_max_size=256M, date.timezone="UTC" + - name: Install Composer dependencies + if: steps.cache-php-windows.outputs.cache-hit != 'true' + run: | + composer install --no-progress --ignore-platform-reqs + mysql -uroot -pjoomla_ut -e 'CREATE DATABASE IF NOT EXISTS test_joomla;' + - name: Run Integration tests + run: | + sleep 3 + php libraries/vendor/bin/phpunit --testsuite Integration --configuration phpunit-windows.xml.dist + tests-system-prepare: name: Prepare system tests runs-on: ubuntu-latest diff --git a/.phan/config.php b/.phan/config.php deleted file mode 100644 index 3557073cdff62..0000000000000 --- a/.phan/config.php +++ /dev/null @@ -1,357 +0,0 @@ - '8.1', - - // If enabled, missing properties will be created when - // they are first seen. If false, we'll report an - // error message if there is an attempt to write - // to a class property that wasn't explicitly - // defined. - 'allow_missing_properties' => true, - - // If enabled, null can be cast to any type and any - // type can be cast to null. Setting this to true - // will cut down on false positives. - 'null_casts_as_any_type' => true, - - // If enabled, allow null to be cast as any array-like type. - // - // This is an incremental step in migrating away from `null_casts_as_any_type`. - // If `null_casts_as_any_type` is true, this has no effect. - 'null_casts_as_array' => true, - - // If enabled, allow any array-like type to be cast to null. - // This is an incremental step in migrating away from `null_casts_as_any_type`. - // If `null_casts_as_any_type` is true, this has no effect. - 'array_casts_as_null' => true, - - // If enabled, scalars (int, float, bool, string, null) - // are treated as if they can cast to each other. - // This does not affect checks of array keys. See `scalar_array_key_cast`. - 'scalar_implicit_cast' => true, - - // If enabled, any scalar array keys (int, string) - // are treated as if they can cast to each other. - // E.g. `array` can cast to `array` and vice versa. - // Normally, a scalar type such as int could only cast to/from int and mixed. - 'scalar_array_key_cast' => true, - - // If this has entries, scalars (int, float, bool, string, null) - // are allowed to perform the casts listed. - // - // E.g. `['int' => ['float', 'string'], 'float' => ['int'], 'string' => ['int'], 'null' => ['string']]` - // allows casting null to a string, but not vice versa. - // (subset of `scalar_implicit_cast`) - 'scalar_implicit_partial' => [], - - // If enabled, Phan will warn if **any** type in a method invocation's object - // is definitely not an object, - // or if **any** type in an invoked expression is not a callable. - // Setting this to true will introduce numerous false positives - // (and reveal some bugs). - 'strict_method_checking' => false, - - // If enabled, Phan will warn if **any** type of the object expression for a property access - // does not contain that property. - 'strict_object_checking' => false, - - // If enabled, Phan will warn if **any** type in the argument's union type - // cannot be cast to a type in the parameter's expected union type. - // Setting this to true will introduce numerous false positives - // (and reveal some bugs). - 'strict_param_checking' => false, - - // If enabled, Phan will warn if **any** type in a property assignment's union type - // cannot be cast to a type in the property's declared union type. - // Setting this to true will introduce numerous false positives - // (and reveal some bugs). - 'strict_property_checking' => false, - - // If enabled, Phan will warn if **any** type in a returned value's union type - // cannot be cast to the declared return type. - // Setting this to true will introduce numerous false positives - // (and reveal some bugs). - 'strict_return_checking' => false, - - // If true, seemingly undeclared variables in the global - // scope will be ignored. - // - // This is useful for projects with complicated cross-file - // globals that you have no hope of fixing. - 'ignore_undeclared_variables_in_global_scope' => true, - - // Set this to false to emit `PhanUndeclaredFunction` issues for internal functions that Phan has signatures for, - // but aren't available in the codebase, or from Reflection. - // (may lead to false positives if an extension isn't loaded) - // - // If this is true(default), then Phan will not warn. - // - // Even when this is false, Phan will still infer return values and check parameters of internal functions - // if Phan has the signatures. - 'ignore_undeclared_functions_with_known_signatures' => true, - - // Backwards Compatibility Checking. This is slow - // and expensive, but you should consider running - // it before upgrading your version of PHP to a - // new version that has backward compatibility - // breaks. - // - // If you are migrating from PHP 5 to PHP 7, - // you should also look into using - // [php7cc (no longer maintained)](https://github.com/sstalle/php7cc) - // and [php7mar](https://github.com/Alexia/php7mar), - // which have different backwards compatibility checks. - // - // If you are still using versions of php older than 5.6, - // `PHP53CompatibilityPlugin` may be worth looking into if you are not running - // syntax checks for php 5.3 through another method such as - // `InvokePHPNativeSyntaxCheckPlugin` (see .phan/plugins/README.md). - 'backward_compatibility_checks' => false, - - // If true, check to make sure the return type declared - // in the doc-block (if any) matches the return type - // declared in the method signature. - 'check_docblock_signature_return_type_match' => true, - - // This setting maps case-insensitive strings to union types. - // - // This is useful if a project uses phpdoc that differs from the phpdoc2 standard. - // - // If the corresponding value is the empty string, - // then Phan will ignore that union type (E.g. can ignore 'the' in `@return the value`) - // - // If the corresponding value is not empty, - // then Phan will act as though it saw the corresponding UnionTypes(s) - // when the keys show up in a UnionType of `@param`, `@return`, `@var`, `@property`, etc. - // - // This matches the **entire string**, not parts of the string. - // (E.g. `@return the|null` will still look for a class with the name `the`, but `@return the` will be ignored with the below setting) - // - // (These are not aliases, this setting is ignored outside of doc comments). - // (Phan does not check if classes with these names exist) - // - // Example setting: `['unknown' => '', 'number' => 'int|float', 'char' => 'string', 'long' => 'int', 'the' => '']` - 'phpdoc_type_mapping' => [], - - // Set to true in order to attempt to detect dead - // (unreferenced) code. Keep in mind that the - // results will only be a guess given that classes, - // properties, constants and methods can be referenced - // as variables (like `$class->$property` or - // `$class->$method()`) in ways that we're unable - // to make sense of. - // - // To more aggressively detect dead code, - // you may want to set `dead_code_detection_prefer_false_negative` to `false`. - 'dead_code_detection' => false, - - // Set to true in order to attempt to detect unused variables. - // `dead_code_detection` will also enable unused variable detection. - // - // This has a few known false positives, e.g. for loops or branches. - 'unused_variable_detection' => false, - - // Set to true in order to attempt to detect redundant and impossible conditions. - // - // This has some false positives involving loops, - // variables set in branches of loops, and global variables. - 'redundant_condition_detection' => false, - - // If enabled, Phan will act as though it's certain of real return types of a subset of internal functions, - // even if those return types aren't available in reflection (real types were taken from php 7.3 or 8.0-dev, depending on target_php_version). - // - // Note that with php 7 and earlier, php would return null or false for many internal functions if the argument types or counts were incorrect. - // As a result, enabling this setting with target_php_version 8.0 may result in false positives for `--redundant-condition-detection` when codebases also support php 7.x. - 'assume_real_types_for_internal_functions' => false, - - // If true, this runs a quick version of checks that takes less - // time at the cost of not running as thorough - // of an analysis. You should consider setting this - // to true only when you wish you had more **undiagnosed** issues - // to fix in your code base. - // - // In quick-mode the scanner doesn't rescan a function - // or a method's code block every time a call is seen. - // This means that the problem here won't be detected: - // - // ```php - // false, - - // Override to hardcode existence and types of (non-builtin) globals in the global scope. - // Class names should be prefixed with `\`. - // - // (E.g. `['_FOO' => '\FooClass', 'page' => '\PageClass', 'userId' => 'int']`) - 'globals_type_map' => [], - - // The minimum severity level to report on. This can be - // set to `Issue::SEVERITY_LOW`, `Issue::SEVERITY_NORMAL` or - // `Issue::SEVERITY_CRITICAL`. Setting it to only - // critical issues is a good place to start on a big - // sloppy mature code base. - 'minimum_severity' => Issue::SEVERITY_NORMAL, - - // Add any issue types (such as `'PhanUndeclaredMethod'`) - // to this list to inhibit them from being reported. - 'suppress_issue_types' => ['PhanDeprecatedClass', 'PhanUndeclaredConstant','PhanDeprecatedFunction'], - - // A regular expression to match files to be excluded - // from parsing and analysis and will not be read at all. - // - // This is useful for excluding groups of test or example - // directories/files, unanalyzable files, or files that - // can't be removed for whatever reason. - // (e.g. `'@Test\.php$@'`, or `'@vendor/.*/(tests|Tests)/@'`) - 'exclude_file_regex' => '@^vendor/.*/(tests?|Tests?)/@', - - // A list of files that will be excluded from parsing and analysis - // and will not be read at all. - // - // This is useful for excluding hopelessly unanalyzable - // files that can't be removed for whatever reason. - 'exclude_file_list' => [ - 'administrator\components\com_joomlaupdate\finalisation.php' - ], - - // A directory list that defines files that will be excluded - // from static analysis, but whose class and method - // information should be included. - // - // Generally, you'll want to include the directories for - // third-party code (such as "vendor/") in this list. - // - // n.b.: If you'd like to parse but not analyze 3rd - // party code, directories containing that code - // should be added to the `directory_list` as well as - // to `exclude_analysis_directory_list`. - 'exclude_analysis_directory_list' => [ - 'libraries/vendor/', - 'libraries/php-encryption', - 'libraries/phpass' - ], - - // Enable this to enable checks of require/include statements referring to valid paths. - // The settings `include_paths` and `warn_about_relative_include_statement` affect the checks. - 'enable_include_path_checks' => false, - - // The number of processes to fork off during the analysis - // phase. - 'processes' => 1, - - // List of case-insensitive file extensions supported by Phan. - // (e.g. `['php', 'html', 'htm']`) - 'analyzed_file_extensions' => [ - 'php', - ], - - // You can put paths to stubs of internal extensions in this config option. - // If the corresponding extension is **not** loaded, then Phan will use the stubs instead. - // Phan will continue using its detailed type annotations, - // but load the constants, classes, functions, and classes (and their Reflection types) - // from these stub files (doubling as valid php files). - // Use a different extension from php to avoid accidentally loading these. - // The `tools/make_stubs` script can be used to generate your own stubs (compatible with php 7.0+ right now) - // - // (e.g. `['xdebug' => '.phan/internal_stubs/xdebug.phan_php']`) - 'autoload_internal_extension_signatures' => [ - 'redis' => '.phan/redis.phan_php', - 'memcached' => '.phan/memcached.phan_php', - 'dom' => '.phan/dom.phan_php', - ], - - // A list of plugin files to execute. - // - // Plugins which are bundled with Phan can be added here by providing their name (e.g. `'AlwaysReturnPlugin'`) - // - // Documentation about available bundled plugins can be found [here](https://github.com/phan/phan/tree/v4/.phan/plugins). - // - // Alternately, you can pass in the full path to a PHP file with the plugin's implementation (e.g. `'vendor/phan/phan/.phan/plugins/AlwaysReturnPlugin.php'`) - 'plugins' => [], - - // A list of directories that should be parsed for class and - // method information. After excluding the directories - // defined in `exclude_analysis_directory_list`, the remaining - // files will be statically analyzed for errors. - // - // Thus, both first-party and third-party code being used by - // your application should be included in this list. - 'directory_list' => [ - 'libraries', - 'libraries/vendor/joomla', - 'administrator', - 'components', - 'plugins' - ], - - // A list of individual files to include in analysis - // with a path relative to the root directory of the - // project. - 'file_list' => [], -]; diff --git a/.phan/dom.phan_php b/.phan/dom.phan_php deleted file mode 100644 index ebb92e84dd117..0000000000000 --- a/.phan/dom.phan_php +++ /dev/null @@ -1,418 +0,0 @@ - English (en-GB) en-GB - 5.3.2 - 2025-06 + 5.3.3 + 2025-07 Joomla! Project admin@joomla.org www.joomla.org diff --git a/administrator/language/en-GB/langmetadata.xml b/administrator/language/en-GB/langmetadata.xml index 448376e46fedb..27a1990be4a5c 100644 --- a/administrator/language/en-GB/langmetadata.xml +++ b/administrator/language/en-GB/langmetadata.xml @@ -1,8 +1,8 @@ English (en-GB) - 5.3.2 - 2025-06 + 5.3.3 + 2025-07 Joomla! Project admin@joomla.org www.joomla.org diff --git a/administrator/manifests/files/joomla.xml b/administrator/manifests/files/joomla.xml index 60c902eb1da7d..b302deede648d 100644 --- a/administrator/manifests/files/joomla.xml +++ b/administrator/manifests/files/joomla.xml @@ -6,8 +6,8 @@ www.joomla.org (C) 2019 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt - 5.3.2-rc2-dev - 2025-06 + 5.3.3-dev + 2025-07 FILES_JOOMLA_XML_DESCRIPTION administrator/components/com_admin/script.php diff --git a/administrator/manifests/packages/pkg_en-GB.xml b/administrator/manifests/packages/pkg_en-GB.xml index 6d2d1d94bcad2..0d08b435f2524 100644 --- a/administrator/manifests/packages/pkg_en-GB.xml +++ b/administrator/manifests/packages/pkg_en-GB.xml @@ -2,8 +2,8 @@ English (en-GB) Language Pack en-GB - 5.3.2.1 - 2025-06 + 5.3.3.1 + 2025-07 Joomla! Project admin@joomla.org www.joomla.org diff --git a/api/language/en-GB/install.xml b/api/language/en-GB/install.xml index bb2bcb0663d28..1ddfdbfb9d212 100644 --- a/api/language/en-GB/install.xml +++ b/api/language/en-GB/install.xml @@ -2,8 +2,8 @@ English (en-GB) en-GB - 5.3.2 - 2025-06 + 5.3.3 + 2025-07 Joomla! Project admin@joomla.org www.joomla.org diff --git a/api/language/en-GB/langmetadata.xml b/api/language/en-GB/langmetadata.xml index 3fdd8aa405c8b..f3c113004f5d4 100644 --- a/api/language/en-GB/langmetadata.xml +++ b/api/language/en-GB/langmetadata.xml @@ -1,8 +1,8 @@ English (en-GB) - 5.3.2 - 2025-06 + 5.3.3 + 2025-07 Joomla! Project admin@joomla.org www.joomla.org diff --git a/build/build.php b/build/build.php index 1005241b9c63f..2c78204085549 100644 --- a/build/build.php +++ b/build/build.php @@ -433,17 +433,14 @@ function capture_or_fail(string $command): string * Because this is a fresh copy from a git tag, local environment files may be ignored */ $doNotPackage = [ - '.appveyor.yml', '.drone.yml', '.editorconfig', '.github', '.gitignore', - '.phan', '.php-cs-fixer.dist.php', 'acceptance.suite.yml', // Media Manager Node Assets 'administrator/components/com_media/resources', - 'appveyor-phpunit.xml', 'build', 'build.xml', 'CODE_OF_CONDUCT.md', @@ -453,8 +450,10 @@ function capture_or_fail(string $command): string 'cypress.config.dist.mjs', 'package-lock.json', 'package.json', - 'phpunit-pgsql.xml.dist', + 'phpstan-baseline.neon', 'phpstan.neon', + 'phpunit-pgsql.xml.dist', + 'phpunit-windows.xml.dist', 'phpunit.xml.dist', 'plugins/sampledata/testing/language/en-GB/en-GB.plg_sampledata_testing.ini', 'plugins/sampledata/testing/language/en-GB/en-GB.plg_sampledata_testing.sys.ini', diff --git a/build/media_source/templates/administrator/atum/scss/_variables-dark.scss b/build/media_source/templates/administrator/atum/scss/_variables-dark.scss index a74eb072b9c4a..12f7b58aec6fc 100644 --- a/build/media_source/templates/administrator/atum/scss/_variables-dark.scss +++ b/build/media_source/templates/administrator/atum/scss/_variables-dark.scss @@ -284,6 +284,7 @@ $atum-colors-dark: ( btn-secondary-bg: $info-dark, btn-secondary-border: 1px solid color.adjust($info-dark, $lightness: 10%), btn-secondary-bg-hvr: color.adjust($info-dark, $lightness: -10%), + btn-secondary-color-hvr: var(--template-text-light), btn-secondary-border-hvr: 1px solid color.adjust($info-dark, $lightness: 10%), btn-dark-border: 1px solid rgba(0,0,0,.85), diff --git a/build/media_source/templates/administrator/atum/scss/_variables.scss b/build/media_source/templates/administrator/atum/scss/_variables.scss index bd92501826bca..b4b272baf527c 100644 --- a/build/media_source/templates/administrator/atum/scss/_variables.scss +++ b/build/media_source/templates/administrator/atum/scss/_variables.scss @@ -339,6 +339,8 @@ $atum-colors: ( btn-secondary-bg: var(--template-bg-dark-60), btn-secondary-border: 1px solid var(--template-bg-dark-60), btn-secondary-color: var(--template-text-light), + btn-secondary-bg-hvr: var(--template-bg-dark-70), + btn-secondary-color-hvr: var(--template-text-light), btn-info-color: var(--template-text-light), btn-info-bg: $info, diff --git a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_buttons.scss b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_buttons.scss index da8a62118f2e1..018acf32fc207 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_buttons.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/bootstrap/_buttons.scss @@ -54,8 +54,8 @@ border: var(--btn-secondary-border); &:hover { - color: var(--btn-secondary-color-hvr); - background: var(--btn-secondary-bg-hvr); + color: var(--btn-secondary-color-hvr, var(--btn-secondary-color)); + background: var(--btn-secondary-bg-hvr, var(--template-bg-dark-70)); } } diff --git a/build/media_source/templates/administrator/atum/scss/vendor/choicesjs/choices.scss b/build/media_source/templates/administrator/atum/scss/vendor/choicesjs/choices.scss index 95935cfa55bf6..da429f3e40688 100644 --- a/build/media_source/templates/administrator/atum/scss/vendor/choicesjs/choices.scss +++ b/build/media_source/templates/administrator/atum/scss/vendor/choicesjs/choices.scss @@ -60,7 +60,7 @@ position: relative; margin: 2px; color: $choices-list-multiple-item; //$white; - background-color: $choices-list-multiple-item-bg; // var(--template-bg-dark); + background-color: $choices-list-multiple-item-bg !important; // var(--template-bg-dark); margin-inline-end: 2px; border: 0; border-radius: $border-radius; diff --git a/components/com_config/tmpl/config/default.php b/components/com_config/tmpl/config/default.php index 9b2fe2e561db4..7d1f5abde0863 100644 --- a/components/com_config/tmpl/config/default.php +++ b/components/com_config/tmpl/config/default.php @@ -34,7 +34,7 @@ -
+
- + form->getFieldsets() as $fieldset) : ?>
label)) : ?> diff --git a/components/com_privacy/tmpl/request/default.php b/components/com_privacy/tmpl/request/default.php index 6604e14b88bc0..c40ca0808eecb 100644 --- a/components/com_privacy/tmpl/request/default.php +++ b/components/com_privacy/tmpl/request/default.php @@ -31,7 +31,7 @@ sendMailEnabled) : ?> - + form->getFieldsets() as $fieldset) : ?>
label)) : ?> diff --git a/components/com_users/tmpl/captive/default.php b/components/com_users/tmpl/captive/default.php index 231a448392239..d99864080ce8f 100644 --- a/components/com_users/tmpl/captive/default.php +++ b/components/com_users/tmpl/captive/default.php @@ -58,9 +58,9 @@ class="btn btn-sm btn-secondary" - diff --git a/components/com_users/tmpl/login/default_login.php b/components/com_users/tmpl/login/default_login.php index 2745abaafdeb9..aa91b71090082 100644 --- a/components/com_users/tmpl/login/default_login.php +++ b/components/com_users/tmpl/login/default_login.php @@ -51,7 +51,7 @@ - +
form->renderFieldset('credentials', ['class' => 'com-users-login__input']); ?> diff --git a/components/com_users/tmpl/login/default_logout.php b/components/com_users/tmpl/login/default_logout.php index a83fbabab9810..31c4681d0d7a9 100644 --- a/components/com_users/tmpl/login/default_logout.php +++ b/components/com_users/tmpl/login/default_logout.php @@ -41,7 +41,7 @@ - +
- + form->getFieldsets() as $fieldset) : ?> name === 'captcha' && $this->captchaEnabled) : ?> diff --git a/components/com_users/tmpl/remind/default.php b/components/com_users/tmpl/remind/default.php index 7f0eafb1a3989..a0d4453f7a180 100644 --- a/components/com_users/tmpl/remind/default.php +++ b/components/com_users/tmpl/remind/default.php @@ -29,7 +29,7 @@
- + form->getFieldsets() as $fieldset) : ?>
label)) : ?> diff --git a/components/com_users/tmpl/reset/complete.php b/components/com_users/tmpl/reset/complete.php index 3e8ef3a1f14d3..13fe66290e8dc 100644 --- a/components/com_users/tmpl/reset/complete.php +++ b/components/com_users/tmpl/reset/complete.php @@ -29,7 +29,7 @@ - + form->getFieldsets() as $fieldset) : ?>
label)) : ?> diff --git a/components/com_users/tmpl/reset/confirm.php b/components/com_users/tmpl/reset/confirm.php index b798d9e4dc770..755240c7896c7 100644 --- a/components/com_users/tmpl/reset/confirm.php +++ b/components/com_users/tmpl/reset/confirm.php @@ -29,7 +29,7 @@ - + form->getFieldsets() as $fieldset) : ?>
label)) : ?> diff --git a/components/com_users/tmpl/reset/default.php b/components/com_users/tmpl/reset/default.php index 3d294e6e622f0..7fa7267a5c047 100644 --- a/components/com_users/tmpl/reset/default.php +++ b/components/com_users/tmpl/reset/default.php @@ -29,7 +29,7 @@ - + form->getFieldsets() as $fieldset) : ?>
label)) : ?> diff --git a/installation/language/af-ZA/langmetadata.xml b/installation/language/af-ZA/langmetadata.xml index ab8cd2f46aa36..595a5699cbbcc 100644 --- a/installation/language/af-ZA/langmetadata.xml +++ b/installation/language/af-ZA/langmetadata.xml @@ -1,8 +1,8 @@ Afrikaans (Suid-Afrika) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Afrikaans Translation Team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/ar-AA/joomla.ini b/installation/language/ar-AA/joomla.ini index 8a588d4e32558..96424a1782f98 100644 --- a/installation/language/ar-AA/joomla.ini +++ b/installation/language/ar-AA/joomla.ini @@ -201,7 +201,7 @@ INSTL_WRITABLE="%s قابل للكتابة" INSTL_ZIP_SUPPORT_AVAILABLE="توفر ZIP خاصية فك الملفات المضغوطة" ; Global strings JADMINISTRATOR="الإدارة" -JCLOSE="إغلاق" +JCLOSE="أغلق" JEMAIL="البريد الإلكتروني" JERROR="خطأ" JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST="لقد حدث خطأ أثناء معالجة طلبك." diff --git a/installation/language/ar-AA/langmetadata.xml b/installation/language/ar-AA/langmetadata.xml index ba29545f87af4..c179e18910bc3 100644 --- a/installation/language/ar-AA/langmetadata.xml +++ b/installation/language/ar-AA/langmetadata.xml @@ -1,8 +1,8 @@ Arabic (اللغة العربية) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Project (Arabic Translation Team) (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/be-BY/langmetadata.xml b/installation/language/be-BY/langmetadata.xml index 8a01901dff66c..30e00eb640c44 100644 --- a/installation/language/be-BY/langmetadata.xml +++ b/installation/language/be-BY/langmetadata.xml @@ -1,8 +1,8 @@ Belarusian (Belarus) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla Belarus Community (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/bg-BG/langmetadata.xml b/installation/language/bg-BG/langmetadata.xml index bfb322be0e49f..eacf24e19984e 100644 --- a/installation/language/bg-BG/langmetadata.xml +++ b/installation/language/bg-BG/langmetadata.xml @@ -1,8 +1,8 @@ Bulgarian (bg-BG) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Bulgaria (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/ca-ES/langmetadata.xml b/installation/language/ca-ES/langmetadata.xml index 30d9890e47d8c..d64440ae56853 100644 --- a/installation/language/ca-ES/langmetadata.xml +++ b/installation/language/ca-ES/langmetadata.xml @@ -1,8 +1,8 @@ Catalan (ca-ES) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Catalan [ca-ES] Translation Team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/cs-CZ/langmetadata.xml b/installation/language/cs-CZ/langmetadata.xml index 345030849f9ac..4cf39f68d1b4a 100644 --- a/installation/language/cs-CZ/langmetadata.xml +++ b/installation/language/cs-CZ/langmetadata.xml @@ -1,8 +1,8 @@ Czech (Čeština) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Czech Translation Team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/cy-GB/langmetadata.xml b/installation/language/cy-GB/langmetadata.xml index ff5a4c85366ce..fb0fef1608dd7 100644 --- a/installation/language/cy-GB/langmetadata.xml +++ b/installation/language/cy-GB/langmetadata.xml @@ -1,8 +1,8 @@ Welsh (United Kingdom) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Project - Welsh Translation Team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/da-DK/langmetadata.xml b/installation/language/da-DK/langmetadata.xml index 708cd373c1bd3..6728037179744 100644 --- a/installation/language/da-DK/langmetadata.xml +++ b/installation/language/da-DK/langmetadata.xml @@ -1,8 +1,8 @@ Danish (Danmark) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Danish Translation Team (Transl.: Ronny Buelund) (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/el-GR/langmetadata.xml b/installation/language/el-GR/langmetadata.xml index 7bffbbd9901fa..0452460ccca78 100644 --- a/installation/language/el-GR/langmetadata.xml +++ b/installation/language/el-GR/langmetadata.xml @@ -1,8 +1,8 @@ Greek (el-GR) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Ομάδα Μετάφρασης: joomla. gr (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/en-AU/langmetadata.xml b/installation/language/en-AU/langmetadata.xml index b873e9ec458f2..48d6062555fb1 100644 --- a/installation/language/en-AU/langmetadata.xml +++ b/installation/language/en-AU/langmetadata.xml @@ -1,8 +1,8 @@ English (Australia) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Project (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/en-CA/langmetadata.xml b/installation/language/en-CA/langmetadata.xml index 329a371757ab5..66ff833a237af 100644 --- a/installation/language/en-CA/langmetadata.xml +++ b/installation/language/en-CA/langmetadata.xml @@ -1,8 +1,8 @@ English (Canada) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Project (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/en-GB/langmetadata.xml b/installation/language/en-GB/langmetadata.xml index db23d1cd0f238..179af4ea1d219 100644 --- a/installation/language/en-GB/langmetadata.xml +++ b/installation/language/en-GB/langmetadata.xml @@ -1,8 +1,8 @@ English (United Kingdom) - 5.3.2 - 2025-06 + 5.3.3 + 2025-07 Joomla! Project (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/en-NZ/langmetadata.xml b/installation/language/en-NZ/langmetadata.xml index ee52b3b5330f4..0cdff13c3f613 100644 --- a/installation/language/en-NZ/langmetadata.xml +++ b/installation/language/en-NZ/langmetadata.xml @@ -1,8 +1,8 @@ English (New Zealand) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Project (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/en-US/langmetadata.xml b/installation/language/en-US/langmetadata.xml index 2cee74e1e0de2..8a3846d862948 100644 --- a/installation/language/en-US/langmetadata.xml +++ b/installation/language/en-US/langmetadata.xml @@ -1,8 +1,8 @@ English (United States) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Project (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/es-ES/langmetadata.xml b/installation/language/es-ES/langmetadata.xml index 3dda2b79ee430..3cce60604afaa 100644 --- a/installation/language/es-ES/langmetadata.xml +++ b/installation/language/es-ES/langmetadata.xml @@ -1,8 +1,8 @@ Spanish (es-ES) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Spanish [es-ES] Translation Team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/et-EE/langmetadata.xml b/installation/language/et-EE/langmetadata.xml index 74755081b02af..728992a19a4a8 100644 --- a/installation/language/et-EE/langmetadata.xml +++ b/installation/language/et-EE/langmetadata.xml @@ -1,8 +1,8 @@ Estonian - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Project (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/eu-ES/langmetadata.xml b/installation/language/eu-ES/langmetadata.xml index 5c5a7abdd5d54..b6aebe2a43542 100644 --- a/installation/language/eu-ES/langmetadata.xml +++ b/installation/language/eu-ES/langmetadata.xml @@ -1,8 +1,8 @@ Basque - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Basque Translation Team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/fa-AF/langmetadata.xml b/installation/language/fa-AF/langmetadata.xml index e43b1e8c4263a..fe1a1238075e8 100644 --- a/installation/language/fa-AF/langmetadata.xml +++ b/installation/language/fa-AF/langmetadata.xml @@ -1,8 +1,8 @@ فارسی (دری) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 JoomlaPersian Translation Team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/fa-IR/langmetadata.xml b/installation/language/fa-IR/langmetadata.xml index 06e75c844ddc0..76e19cf5a2911 100644 --- a/installation/language/fa-IR/langmetadata.xml +++ b/installation/language/fa-IR/langmetadata.xml @@ -1,8 +1,8 @@ Persian (fa-IR) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Persian Translation Team: joomlafarsi.com (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/fi-FI/langmetadata.xml b/installation/language/fi-FI/langmetadata.xml index 3cdd216d6fb10..541ccad7f0ad9 100644 --- a/installation/language/fi-FI/langmetadata.xml +++ b/installation/language/fi-FI/langmetadata.xml @@ -1,8 +1,8 @@ Finnish (Finland) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Finnish translation team: Joomla.fi (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/fr-CA/langmetadata.xml b/installation/language/fr-CA/langmetadata.xml index 19bb1adadb975..5eba624845c22 100644 --- a/installation/language/fr-CA/langmetadata.xml +++ b/installation/language/fr-CA/langmetadata.xml @@ -1,8 +1,8 @@ French (Canada) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Project - French translation team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/fr-FR/langmetadata.xml b/installation/language/fr-FR/langmetadata.xml index 8542dc32fb44c..dd81098c5581a 100644 --- a/installation/language/fr-FR/langmetadata.xml +++ b/installation/language/fr-FR/langmetadata.xml @@ -1,8 +1,8 @@ French (fr-FR) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Project - French translation team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/he-IL/langmetadata.xml b/installation/language/he-IL/langmetadata.xml index 2a37c549380e6..932acbadee724 100644 --- a/installation/language/he-IL/langmetadata.xml +++ b/installation/language/he-IL/langmetadata.xml @@ -1,8 +1,8 @@ Hebrew (Israel) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 פרוייקט ג'ומלה (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/hr-HR/langmetadata.xml b/installation/language/hr-HR/langmetadata.xml index e77a7abc3d02d..7cc7216ef66ad 100644 --- a/installation/language/hr-HR/langmetadata.xml +++ b/installation/language/hr-HR/langmetadata.xml @@ -1,8 +1,8 @@ Hrvatski (Hrvatska) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Hrvatska team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/hu-HU/langmetadata.xml b/installation/language/hu-HU/langmetadata.xml index 2713616827916..760933accc6f9 100644 --- a/installation/language/hu-HU/langmetadata.xml +++ b/installation/language/hu-HU/langmetadata.xml @@ -1,8 +1,8 @@ Hungarian (Magyar) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Magyarország (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/id-ID/langmetadata.xml b/installation/language/id-ID/langmetadata.xml index 6e3d51929ebe3..3eb96792faad0 100644 --- a/installation/language/id-ID/langmetadata.xml +++ b/installation/language/id-ID/langmetadata.xml @@ -1,8 +1,8 @@ Bahasa Indonesia (id-ID) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Indonesia (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/it-IT/langmetadata.xml b/installation/language/it-IT/langmetadata.xml index 81b3d7027ae3f..237c08abac7c8 100644 --- a/installation/language/it-IT/langmetadata.xml +++ b/installation/language/it-IT/langmetadata.xml @@ -1,8 +1,8 @@ Italiano (it-IT) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Project (Italian Translation Team) (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/ja-JP/langmetadata.xml b/installation/language/ja-JP/langmetadata.xml index ff1b9d1dcff89..ace400107078f 100644 --- a/installation/language/ja-JP/langmetadata.xml +++ b/installation/language/ja-JP/langmetadata.xml @@ -1,8 +1,8 @@ Japanese (Japan) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla!じゃぱん (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/ka-GE/langmetadata.xml b/installation/language/ka-GE/langmetadata.xml index 2f63f7bd99e78..e2ea52c6442c7 100644 --- a/installation/language/ka-GE/langmetadata.xml +++ b/installation/language/ka-GE/langmetadata.xml @@ -1,8 +1,8 @@ Georgian (Georgia) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Georgian Translation Team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/kk-KZ/langmetadata.xml b/installation/language/kk-KZ/langmetadata.xml index 83394fb1b68c2..b20fae907ca65 100644 --- a/installation/language/kk-KZ/langmetadata.xml +++ b/installation/language/kk-KZ/langmetadata.xml @@ -1,8 +1,8 @@ Kazakh (Kazakhstan) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Sarvarov Akylkerey (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/ko-KR/langmetadata.xml b/installation/language/ko-KR/langmetadata.xml index 5fd03f06dbcb4..10be76012244a 100644 --- a/installation/language/ko-KR/langmetadata.xml +++ b/installation/language/ko-KR/langmetadata.xml @@ -1,8 +1,8 @@ Korean (Republic of Korea) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! 프로젝트 (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/lt-LT/langmetadata.xml b/installation/language/lt-LT/langmetadata.xml index 44aa10c60c090..51c86201f2aef 100644 --- a/installation/language/lt-LT/langmetadata.xml +++ b/installation/language/lt-LT/langmetadata.xml @@ -1,8 +1,8 @@ Lietuvių (lt-LT) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Oskaras Jankauskas (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/lv-LV/langmetadata.xml b/installation/language/lv-LV/langmetadata.xml index bbc6e237e54fe..a91121bffe85b 100644 --- a/installation/language/lv-LV/langmetadata.xml +++ b/installation/language/lv-LV/langmetadata.xml @@ -1,8 +1,8 @@ Latvian (Latvia) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Projekts (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/mk-MK/langmetadata.xml b/installation/language/mk-MK/langmetadata.xml index a49edcd150251..52342de93cc3f 100644 --- a/installation/language/mk-MK/langmetadata.xml +++ b/installation/language/mk-MK/langmetadata.xml @@ -1,8 +1,8 @@ Macedonian (mk-MK) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Project (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/nl-BE/langmetadata.xml b/installation/language/nl-BE/langmetadata.xml index d3e125676b77a..89d9e1f0c9df5 100644 --- a/installation/language/nl-BE/langmetadata.xml +++ b/installation/language/nl-BE/langmetadata.xml @@ -1,8 +1,8 @@ Vlaams (België) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Vlaams (BE) translation team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/nl-NL/langmetadata.xml b/installation/language/nl-NL/langmetadata.xml index 626720716486c..d47bf5f44f6c5 100644 --- a/installation/language/nl-NL/langmetadata.xml +++ b/installation/language/nl-NL/langmetadata.xml @@ -1,8 +1,8 @@ Dutch (Netherlands) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Dutch Translation Team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/pl-PL/langmetadata.xml b/installation/language/pl-PL/langmetadata.xml index 61964f28fca4d..13182a08a1194 100644 --- a/installation/language/pl-PL/langmetadata.xml +++ b/installation/language/pl-PL/langmetadata.xml @@ -1,8 +1,8 @@ Polski (PL) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Projekt Joomla! (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/pt-BR/langmetadata.xml b/installation/language/pt-BR/langmetadata.xml index 4ccab08e7323d..856a64d73a9df 100644 --- a/installation/language/pt-BR/langmetadata.xml +++ b/installation/language/pt-BR/langmetadata.xml @@ -1,8 +1,8 @@ Português do Brasil (pt-BR) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Projeto Joomla! (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/pt-PT/langmetadata.xml b/installation/language/pt-PT/langmetadata.xml index a4b9401e66f29..8d72cf8bfce7d 100644 --- a/installation/language/pt-PT/langmetadata.xml +++ b/installation/language/pt-PT/langmetadata.xml @@ -1,8 +1,8 @@ Português (Portugal) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Comunidade JoomlaPortugal (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/ro-RO/langmetadata.xml b/installation/language/ro-RO/langmetadata.xml index 19bc77ce20f19..91a25bee9a24e 100644 --- a/installation/language/ro-RO/langmetadata.xml +++ b/installation/language/ro-RO/langmetadata.xml @@ -1,8 +1,8 @@ Română (România) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Horia Negura - Quanta (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/sk-SK/langmetadata.xml b/installation/language/sk-SK/langmetadata.xml index 623ca14d7a801..6a2a1cb4d2b70 100644 --- a/installation/language/sk-SK/langmetadata.xml +++ b/installation/language/sk-SK/langmetadata.xml @@ -1,8 +1,8 @@ Slovak (Slovakia) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Slovak translation team : Peter Michnica (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/sl-SI/langmetadata.xml b/installation/language/sl-SI/langmetadata.xml index 8117691c16b1b..0d202b7a80eab 100644 --- a/installation/language/sl-SI/langmetadata.xml +++ b/installation/language/sl-SI/langmetadata.xml @@ -1,8 +1,8 @@ Slovenščina (Slovenija) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Slovenska prevajalska ekipa (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/sr-YU/langmetadata.xml b/installation/language/sr-YU/langmetadata.xml index 229ef98b9c3b8..cbcafb36a8e37 100644 --- a/installation/language/sr-YU/langmetadata.xml +++ b/installation/language/sr-YU/langmetadata.xml @@ -1,8 +1,8 @@ Srpski (Republika Srbija) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Goran Nešić - UIX Web Design & Saša Matić Bardak.RS (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/sv-SE/langmetadata.xml b/installation/language/sv-SE/langmetadata.xml index 8846d6533fb99..390233e0e636a 100644 --- a/installation/language/sv-SE/langmetadata.xml +++ b/installation/language/sv-SE/langmetadata.xml @@ -1,8 +1,8 @@ Swedish (Sweden) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Swedish Translation Team - SvenskJoomla (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/ta-IN/langmetadata.xml b/installation/language/ta-IN/langmetadata.xml index fd03560bd974f..dde50401e3097 100644 --- a/installation/language/ta-IN/langmetadata.xml +++ b/installation/language/ta-IN/langmetadata.xml @@ -1,8 +1,8 @@ Tamil (India) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Ilagnayeru 'MIG' Manickam, Elango Samy Manim (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/th-TH/langmetadata.xml b/installation/language/th-TH/langmetadata.xml index 1a6aa2c6e3fc7..1fc2e5d43fea5 100644 --- a/installation/language/th-TH/langmetadata.xml +++ b/installation/language/th-TH/langmetadata.xml @@ -1,8 +1,8 @@ Thai (ภาษาไทย) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Thai Translation Team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/tr-TR/langmetadata.xml b/installation/language/tr-TR/langmetadata.xml index 826b407fb532b..740974b42fe2a 100644 --- a/installation/language/tr-TR/langmetadata.xml +++ b/installation/language/tr-TR/langmetadata.xml @@ -1,8 +1,8 @@ Turkish (Turkey) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Türkiye (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/uk-UA/langmetadata.xml b/installation/language/uk-UA/langmetadata.xml index 786e489c70d6c..1c4cc81873297 100644 --- a/installation/language/uk-UA/langmetadata.xml +++ b/installation/language/uk-UA/langmetadata.xml @@ -1,8 +1,8 @@ Ukrainian (uk-UA) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Denys Nosov (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/ur-PK/langmetadata.xml b/installation/language/ur-PK/langmetadata.xml index 357a7ecb66433..3acb474c7a7ad 100644 --- a/installation/language/ur-PK/langmetadata.xml +++ b/installation/language/ur-PK/langmetadata.xml @@ -1,8 +1,8 @@ Urdu (ur-PK) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Urdu Translation Team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/vi-VN/langmetadata.xml b/installation/language/vi-VN/langmetadata.xml index a8c189aa110c2..870078c36af1a 100644 --- a/installation/language/vi-VN/langmetadata.xml +++ b/installation/language/vi-VN/langmetadata.xml @@ -1,8 +1,8 @@ Vietnamese (Vietnam) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla! Project (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/zh-CN/langmetadata.xml b/installation/language/zh-CN/langmetadata.xml index 46bde9bb15919..13d65f92ec916 100644 --- a/installation/language/zh-CN/langmetadata.xml +++ b/installation/language/zh-CN/langmetadata.xml @@ -1,8 +1,8 @@ Chinese Simplified (China) - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 Joomla中文网 (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/language/zh-TW/langmetadata.xml b/installation/language/zh-TW/langmetadata.xml index f0d960d6cdaeb..7ca4f92198fee 100644 --- a/installation/language/zh-TW/langmetadata.xml +++ b/installation/language/zh-TW/langmetadata.xml @@ -1,8 +1,8 @@ 正體中文 - 5.3.2 - 2025-05 + 5.3.3 + 2025-07 正體中文 Translation Team (C) 2005 Open Source Matters, Inc. GNU General Public License version 2 or later; see LICENSE.txt diff --git a/installation/template/scss/template.scss b/installation/template/scss/template.scss index 4dc7f79c90837..2dd846aa06903 100644 --- a/installation/template/scss/template.scss +++ b/installation/template/scss/template.scss @@ -460,7 +460,7 @@ caption { } .bg-warning { - color: #fff; + color: #000; } // footer diff --git a/language/en-GB/install.xml b/language/en-GB/install.xml index f585db7e683f8..85cd8b94a42b1 100644 --- a/language/en-GB/install.xml +++ b/language/en-GB/install.xml @@ -2,8 +2,8 @@ English (en-GB) en-GB - 5.3.2 - 2025-06 + 5.3.3 + 2025-07 Joomla! Project admin@joomla.org www.joomla.org diff --git a/language/en-GB/langmetadata.xml b/language/en-GB/langmetadata.xml index c0f2bfce48c05..ab8fca8ae3fcf 100644 --- a/language/en-GB/langmetadata.xml +++ b/language/en-GB/langmetadata.xml @@ -1,8 +1,8 @@ English (en-GB) - 5.3.2 - 2025-06 + 5.3.3 + 2025-07 Joomla! Project admin@joomla.org www.joomla.org diff --git a/libraries/src/Dispatcher/ComponentDispatcher.php b/libraries/src/Dispatcher/ComponentDispatcher.php index 794e606334485..22fc73ba5d3bb 100644 --- a/libraries/src/Dispatcher/ComponentDispatcher.php +++ b/libraries/src/Dispatcher/ComponentDispatcher.php @@ -171,7 +171,7 @@ public function getController(string $name, string $client = '', array $config = // Check if the controller could be created if (!$controller) { - throw new \InvalidArgumentException(Text::sprintf('JLIB_APPLICATION_ERROR_INVALID_CONTROLLER_CLASS', $name)); + throw new \InvalidArgumentException(Text::sprintf('JLIB_APPLICATION_ERROR_INVALID_CONTROLLER_CLASS', $name), 404); } return $controller; diff --git a/libraries/src/HTML/Helpers/StringHelper.php b/libraries/src/HTML/Helpers/StringHelper.php index 4b521cf2f6445..2ee5da493fc33 100644 --- a/libraries/src/HTML/Helpers/StringHelper.php +++ b/libraries/src/HTML/Helpers/StringHelper.php @@ -40,7 +40,7 @@ abstract class StringHelper */ public static function truncate($text, $length = 0, $noSplit = true, $allowHtml = true) { - // Assume a lone open tag is invalid HTML. + // Assume a lone open tag is invalid HTML if ($length === 1 && $text[0] === '<') { return '...'; } @@ -156,87 +156,80 @@ public static function truncate($text, $length = 0, $noSplit = true, $allowHtml */ public static function truncateComplex($html, $maxLength = 0, $noSplit = true) { - // Start with some basic rules. $baseLength = \strlen($html); - // If the original HTML string is shorter than the $maxLength do nothing and return that. - if ($baseLength <= $maxLength || $maxLength === 0) { + // Early return for trivial cases + if ($maxLength === 0 || $baseLength <= $maxLength) { return $html; } - // Take care of short simple cases. - if ($maxLength <= 3 && $html[0] !== '<' && !str_contains(substr($html, 0, $maxLength - 1), '<') && $baseLength > $maxLength) { + // Special case: very short cutoff, plain text. + if ($maxLength <= 3 && $html[0] !== '<' && !str_contains(substr($html, 0, max(0, $maxLength - 1)), '<')) { return '...'; } - // Deal with maximum length of 1 where the string starts with a tag. + // Special case: string starts with a tag and maxLength is 1 if ($maxLength === 1 && $html[0] === '<') { - $endTagPos = \strlen(strstr($html, '>', true)); - $tag = substr($html, 1, $endTagPos); - - $l = $endTagPos + 1; - - if ($noSplit) { - return substr($html, 0, $l) . ''); + if ($endTagPos === false) { + return '...'; } - - // @todo: $character doesn't seem to be used... - $character = substr(strip_tags($html), 0, 1); - - return substr($html, 0, $l) . '..."; } - // First get the truncated plain text string. This is the rendered text we want to end up with. - $ptString = HTMLHelper::_('string.truncate', $html, $maxLength, $noSplit, $allowHtml = false); + // Get a plain text truncated string + $ptString = HTMLHelper::_('string.truncate', $html, $maxLength, $noSplit, false); - // It's all HTML, just return it. if ($ptString === '') { return $html; } - - // If the plain text is shorter than the max length the variable will not end in ... - // In that case we use the whole string. if (!str_ends_with($ptString, '...')) { return $html; } - - // Regular truncate gives us the ellipsis but we want to go back for text and tags. if ($ptString === '...') { $stripped = substr(strip_tags($html), 0, $maxLength); - $ptString = HTMLHelper::_('string.truncate', $stripped, $maxLength, $noSplit, $allowHtml = false); + $ptString = HTMLHelper::_('string.truncate', $stripped, $maxLength, $noSplit, false); } - - // We need to trim the ellipsis that truncate adds. $ptString = rtrim($ptString, '.'); - // Now deal with more complex truncation. while ($maxLength <= $baseLength) { - // Get the truncated string assuming HTML is allowed. - $htmlString = HTMLHelper::_('string.truncate', $html, $maxLength, $noSplit, $allowHtml = true); + $htmlString = HTMLHelper::_('string.truncate', $html, $maxLength, $noSplit, true); if ($htmlString === '...' && \strlen($ptString) + 3 > $maxLength) { - return $htmlString; + return '...'; } $htmlString = rtrim($htmlString, '.'); - // Now get the plain text from the HTML string and trim it. - $htmlStringToPtString = HTMLHelper::_('string.truncate', $htmlString, $maxLength, $noSplit, $allowHtml = false); + // Get the plain text version of the truncated HTML string + $htmlStringToPtString = HTMLHelper::_('string.truncate', $htmlString, $maxLength, $noSplit, false); $htmlStringToPtString = rtrim($htmlStringToPtString, '.'); - // If the new plain text string matches the original plain text string we are done. + // If plain text matches, we're done if ($ptString === $htmlStringToPtString) { + // Remove whitespace, non-breaking spaces, and trailing tags before the ellipsis + $htmlString = preg_replace('/( |\s)+(<\/[^>]+>)?$/u', '', $htmlString); + + // If it ends with a closing tag, try to inject the ellipsis before the last closing tag + if (preg_match('/(<\/[^>]+>)$/', $htmlString, $matches)) { + return preg_replace('/(<\/[^>]+>)$/', '...$1', $htmlString); + } return $htmlString . '...'; } - // Get the number of HTML tag characters in the first $maxLength characters + // Adjust length for HTML tags $diffLength = \strlen($ptString) - \strlen($htmlStringToPtString); - if ($diffLength <= 0) { + // Remove whitespace, non-breaking spaces, and trailing tags before the ellipsis + $htmlString = preg_replace('/( |\s)+(<\/[^>]+>)?$/u', '', $htmlString); + + // If it ends with a closing tag, inject the ellipsis before the last closing tag + if (preg_match('/(<\/[^>]+>)$/', $htmlString, $matches)) { + return preg_replace('/(<\/[^>]+>)$/', '...$1', $htmlString); + } return $htmlString . '...'; } - - // Set new $maxlength that adjusts for the HTML tags $maxLength += $diffLength; } diff --git a/libraries/src/Helper/MediaHelper.php b/libraries/src/Helper/MediaHelper.php index d5887f83352de..9394866a110c1 100644 --- a/libraries/src/Helper/MediaHelper.php +++ b/libraries/src/Helper/MediaHelper.php @@ -198,7 +198,7 @@ public static function checkFileExtension($extension, $component = 'com_media', * * @param array $file File information * @param string $component The option name for the component storing the parameters - * @param string[] $allowedExecutables Array of executable file types that shall be whitelisted + * @param string[] $allowedExecutables Array of executable file types that shall be allowed * * @return boolean * diff --git a/libraries/src/MVC/Controller/FormController.php b/libraries/src/MVC/Controller/FormController.php index 231fce043c985..2da2087177f46 100644 --- a/libraries/src/MVC/Controller/FormController.php +++ b/libraries/src/MVC/Controller/FormController.php @@ -566,7 +566,7 @@ public function save($key = null, $urlVar = null) $urlVar = $key; } - $recordId = $this->input->getInt($urlVar); + $recordId = (int) $this->input->getInt($urlVar); // Populate the row id from the session. $data[$key] = $recordId; diff --git a/libraries/src/Version.php b/libraries/src/Version.php index de50183940e38..a91861f5110f2 100644 --- a/libraries/src/Version.php +++ b/libraries/src/Version.php @@ -55,7 +55,7 @@ final class Version * @var integer * @since 3.8.0 */ - public const PATCH_VERSION = 2; + public const PATCH_VERSION = 3; /** * Extra release version info. @@ -66,7 +66,7 @@ final class Version * @var string * @since 3.8.0 */ - public const EXTRA_VERSION = 'rc2-dev'; + public const EXTRA_VERSION = 'dev'; /** * Development status. @@ -90,7 +90,7 @@ final class Version * @var string * @since 3.5 */ - public const RELDATE = '29-June-2025'; + public const RELDATE = '8-July-2025'; /** * Release time. @@ -98,7 +98,7 @@ final class Version * @var string * @since 3.5 */ - public const RELTIME = '12:41'; + public const RELTIME = '16:01'; /** * Release timezone. diff --git a/libraries/src/Versioning/VersionableModelTrait.php b/libraries/src/Versioning/VersionableModelTrait.php index 02c7392172519..393aaec956149 100644 --- a/libraries/src/Versioning/VersionableModelTrait.php +++ b/libraries/src/Versioning/VersionableModelTrait.php @@ -79,6 +79,11 @@ public function loadHistory($versionId, Table $table) $table->load($rowArray[$key]); } + // Fix null ordering when restoring history + if (\array_key_exists('ordering', $rowArray) && $rowArray['ordering'] === null) { + $rowArray['ordering'] = 0; + } + return $table->bind($rowArray); } } diff --git a/libraries/src/Versioning/Versioning.php b/libraries/src/Versioning/Versioning.php index c121196bab239..09af725e628a0 100644 --- a/libraries/src/Versioning/Versioning.php +++ b/libraries/src/Versioning/Versioning.php @@ -123,6 +123,17 @@ public static function store($typeAlias, $id, $data, $note = '') Factory::getApplication()->getDispatcher()->dispatch('onContentVersioningPrepareTable', $event); } + // Fix for null ordering - set to 0 if null + if (\is_object($data)) { + if (property_exists($data, 'ordering') && $data->ordering === null) { + $data->ordering = 0; + } + } elseif (\is_array($data)) { + if (\array_key_exists('ordering', $data) && $data['ordering'] === null) { + $data['ordering'] = 0; + } + } + $historyTable->version_data = json_encode($data); $historyTable->version_note = $note; diff --git a/package-lock.json b/package-lock.json index 332f58f106546..4e46706fb3619 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "joomla", - "version": "5.3.2", + "version": "5.3.3", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index bcdc5c1878a85..a9ecf36964101 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "joomla", - "version": "5.3.2", + "version": "5.3.3", "description": "Joomla CMS", "license": "GPL-2.0-or-later", "repository": { diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon new file mode 100644 index 0000000000000..4ec0c6bebcb19 --- /dev/null +++ b/phpstan-baseline.neon @@ -0,0 +1,17069 @@ +parameters: + ignoreErrors: + - + message: ''' + #^Parameter \$input of method Joomla\\Component\\Actionlogs\\Administrator\\Controller\\ActionlogsController\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: administrator/components/com_actionlogs/src/Controller/ActionlogsController.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_actionlogs/src/Field/LogsdaterangeField.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_actionlogs/src/Helper/ActionlogsHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_actionlogs/src/Helper/ActionlogsHelper.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_actionlogs/src/Helper/ActionlogsHelper.php + + - + message: ''' + #^Parameter \$object of method Joomla\\Component\\Actionlogs\\Administrator\\Helper\\ActionlogsHelper\:\:getContentTypeLink\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: administrator/components/com_actionlogs/src/Helper/ActionlogsHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_actionlogs/src/Model/ActionlogModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_actionlogs/src/Model/ActionlogsModel.php + + - + message: ''' + #^Access to deprecated property \$app of class Joomla\\Component\\Actionlogs\\Administrator\\Plugin\\ActionLogPlugin\: + 5\.1\.0 will be removed in 7\.0 use \$this\-\>getApplication\(\) instead$# + ''' + identifier: property.deprecated + count: 1 + path: administrator/components/com_actionlogs/src/Plugin/ActionLogPlugin.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_actionlogs/src/View/Actionlogs/HtmlView.php + + - + message: '#^Access to property \$dateRelative on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_actionlogs/tmpl/actionlogs/default.php + + - + message: '#^Access to property \$items on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_actionlogs/tmpl/actionlogs/default.php + + - + message: '#^Access to property \$pagination on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_actionlogs/tmpl/actionlogs/default.php + + - + message: '#^Access to property \$showIpColumn on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_actionlogs/tmpl/actionlogs/default.php + + - + message: '#^Access to property \$state on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_actionlogs/tmpl/actionlogs/default.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 5 + path: administrator/components/com_actionlogs/tmpl/actionlogs/default.php + + - + message: '#^Call to method getDocument\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_actionlogs/tmpl/actionlogs/default.php + + - + message: '#^Instantiated class JConfig not found\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_admin/postinstall/behindproxy.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_admin/postinstall/languageaccess340.php + + - + message: ''' + #^Call to deprecated method fixFilesystemPermissions\(\) of class JoomlaInstallerScript\: + 5\.2\.2 will be removed in 6\.0 without replacement$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_admin/script.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 9 + path: administrator/components/com_admin/script.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_admin/script.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_admin/script.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_admin/src/Model/HelpModel.php + + - + message: '#^Instantiated class JConfig not found\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_admin/src/Model/SysinfoModel.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_admin/src/View/Sysinfo/JsonView.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_admin/src/View/Sysinfo/TextView.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 4 + path: administrator/components/com_associations/src/Helper/AssociationsHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_associations/src/Helper/AssociationsHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: administrator/components/com_associations/src/Helper/AssociationsHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_associations/src/Model/AssociationsModel.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_associations/src/View/Association/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Associations\\Administrator\\View\\Associations\\HtmlView\:\:\$editUri\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_associations/src/View/Associations/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_associations/src/View/Associations/HtmlView.php + + - + message: '#^Access to property \$app on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$defaultTargetSrc on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$editUri on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 3 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$form on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 3 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$itemType on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$referenceId on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 3 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$referenceLanguage on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$referenceTitle on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$referenceTitleValue on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$targetAction on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$targetId on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$targetLanguage on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$targetTitle on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to property \$typeName on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 4 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Call to method getDocument\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_associations/tmpl/association/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Associations\\Administrator\\View\\Associations\\HtmlView\:\:\$editUri\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_associations/tmpl/associations/default.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/Controller/BannerController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/Controller/BannerController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/Controller/BannersController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/Controller/ClientController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/Controller/ClientController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/Controller/TracksController.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_banners/src/Helper/BannersHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_banners/src/Helper/BannersHelper.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/Model/BannerModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_banners/src/Model/BannerModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_banners/src/Model/BannerModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 6 + path: administrator/components/com_banners/src/Model/BannerModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_banners/src/Model/ClientModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_banners/src/Model/ClientModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_banners/src/Model/ClientsModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 7 + path: administrator/components/com_banners/src/Model/TracksModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_banners/src/Table/BannerTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_banners/src/Table/BannerTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 10 + path: administrator/components/com_banners/src/Table/BannerTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_banners/src/Table/ClientTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/View/Banner/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/View/Banners/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/View/Client/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/View/Clients/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/View/Download/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/View/Tracks/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_banners/src/View/Tracks/RawView.php + + - + message: ''' + #^Call to deprecated method getCache\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the cache controller factory instead + Example\: + Factory\:\:getContainer\(\)\-\>get\(CacheControllerFactoryInterface\:\:class\)\-\>createCacheController\(\$handler, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_cache/src/Model/CacheModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Cache\\Cache\: + 4\.2 will be removed in 6\.0 + Use the cache controller factory instead + Example\: Factory\:\:getContainer\(\)\-\>get\(CacheControllerFactoryInterface\:\:class\)\-\>createCacheController\(\$type, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_cache/src/Model/CacheModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_cache/src/Model/CacheModel.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_cache/src/View/Cache/HtmlView.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: administrator/components/com_categories/layouts/joomla/form/field/categoryedit.php + + - + message: ''' + #^Call to deprecated method addIncludePath\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Should not be used anymore as tables are loaded through the MvcFactory$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_categories/src/Controller/AjaxController.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_categories/src/Controller/AjaxController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_categories/src/Controller/CategoryController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_categories/src/Controller/CategoryController.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_categories/src/Field/ComponentsCategoryField.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_categories/src/Helper/CategoriesHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_categories/src/Helper/CategoriesHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_categories/src/Helper/CategoriesHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_categories/src/Model/CategoriesModel.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_categories/src/Model/CategoriesModel.php + + - + message: ''' + #^Call to deprecated method cleanCache\(\) of class Joomla\\Component\\Categories\\Administrator\\Model\\CategoryModel\: + 4\.3 will be removed in 6\.0$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_categories/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 18 + path: administrator/components/com_categories/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_categories/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_categories/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_categories/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 34 + path: administrator/components/com_categories/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_categories/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_categories/src/Service/HTML/AdministratorService.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_categories/src/View/Categories/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_categories/src/View/Category/HtmlView.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\String\\Inflector\: + 3\.0 Use static methods without a class instance instead\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_categories/tmpl/categories/default.php + + - + message: ''' + #^Call to deprecated method toPlural\(\) of class Joomla\\String\\Inflector\: + 3\.0 Use Doctrine\\Common\\Inflector\\Inflector\:\:pluralize\(\) instead\.$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_categories/tmpl/categories/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Categories\\Administrator\\View\\Category\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_categories/tmpl/category/edit.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_checkin/src/View/Checkin/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_config/src/Controller/ApplicationController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_config/src/Controller/ComponentController.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_config/src/Field/ConfigComponentsField.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_config/src/Field/FiltersField.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_config/src/Helper/ConfigHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_config/src/Helper/ConfigHelper.php + + - + message: ''' + #^Call to deprecated method getCache\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the cache controller factory instead + Example\: + Factory\:\:getContainer\(\)\-\>get\(CacheControllerFactoryInterface\:\:class\)\-\>createCacheController\(\$handler, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_config/src/Model/ApplicationModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 4 + path: administrator/components/com_config/src/Model/ApplicationModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\Database\\DatabaseDriver\: + 3\.0 Use DatabaseFactory\:\:getDriver\(\) instead$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_config/src/Model/ApplicationModel.php + + - + message: '#^Instantiated class JConfig not found\.$#' + identifier: class.notFound + count: 3 + path: administrator/components/com_config/src/Model/ApplicationModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: administrator/components/com_config/src/Model/ComponentModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_config/src/Model/ComponentModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_config/src/Model/ComponentModel.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Application\\HtmlView\:\:\$components\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/src/View/Application/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Application\\HtmlView\:\:\$mediaParams\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/src/View/Application/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Application\\HtmlView\:\:\$user\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/src/View/Application/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Application\\HtmlView\:\:\$userIsSuperAdmin\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/src/View/Application/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Application\\HtmlView\:\:\$usersParams\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/src/View/Application/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Component\\HtmlView\:\:\$components\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/src/View/Component/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Component\\HtmlView\:\:\$currentComponent\.$#' + identifier: property.notFound + count: 3 + path: administrator/components/com_config/src/View/Component/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Component\\HtmlView\:\:\$userIsSuperAdmin\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/src/View/Component/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Application\\HtmlView\:\:\$components\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/tmpl/application/default_navigation.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Application\\HtmlView\:\:\$userIsSuperAdmin\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/tmpl/application/default_navigation.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Application\\HtmlView\:\:\$showlabel\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/tmpl/application/default_permissions.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Component\\HtmlView\:\:\$components\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/tmpl/component/default_navigation.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Component\\HtmlView\:\:\$currentComponent\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/tmpl/component/default_navigation.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Administrator\\View\\Component\\HtmlView\:\:\$userIsSuperAdmin\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_config/tmpl/component/default_navigation.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_contact/src/Controller/ContactController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_contact/src/Controller/ContactController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_contact/src/Controller/ContactsController.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_contact/src/Extension/ContactComponent.php + + - + message: ''' + #^Class Joomla\\Component\\Contact\\Administrator\\Extension\\ContactComponent implements deprecated interface Joomla\\CMS\\Fields\\FieldsFormServiceInterface\: + 5\.1\.0 will be removed in 7\.0$# + ''' + identifier: class.implementsDeprecatedInterface + count: 1 + path: administrator/components/com_contact/src/Extension/ContactComponent.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_contact/src/Helper/AssociationsHelper.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_contact/src/Model/ContactModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_contact/src/Model/ContactModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contact/src/Model/ContactModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 7 + path: administrator/components/com_contact/src/Model/ContactModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contact/src/Model/ContactsModel.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contact/src/Service/HTML/AdministratorService.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contact/src/Service/HTML/AdministratorService.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contact/src/Service/HTML/Icon.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contact/src/Table/ContactTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 7 + path: administrator/components/com_contact/src/Table/ContactTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_contact/src/View/Contact/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_contact/src/View/Contacts/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Administrator\\View\\Contact\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_contact/tmpl/contact/edit.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_content/src/Controller/AjaxController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_content/src/Controller/ArticleController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_content/src/Controller/ArticleController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_content/src/Controller/ArticlesController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_content/src/Controller/FeaturedController.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: administrator/components/com_content/src/Extension/ContentComponent.php + + - + message: ''' + #^Class Joomla\\Component\\Content\\Administrator\\Extension\\ContentComponent implements deprecated interface Joomla\\CMS\\Fields\\FieldsFormServiceInterface\: + 5\.1\.0 will be removed in 7\.0$# + ''' + identifier: class.implementsDeprecatedInterface + count: 1 + path: administrator/components/com_content/src/Extension/ContentComponent.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_content/src/Helper/AssociationsHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_content/src/Helper/ContentHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_content/src/Helper/ContentHelper.php + + - + message: ''' + #^Call to deprecated method cleanCache\(\) of class Joomla\\Component\\Content\\Administrator\\Model\\ArticleModel\: + 4\.3 will be removed in 6\.0$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_content/src/Model/ArticleModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_content/src/Model/ArticleModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_content/src/Model/ArticleModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_content/src/Model/ArticleModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 12 + path: administrator/components/com_content/src/Model/ArticleModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_content/src/Model/ArticleModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_content/src/Model/ArticlesModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_content/src/Model/ArticlesModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_content/src/Model/ArticlesModel.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_content/src/Service/HTML/AdministratorService.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_content/src/Service/HTML/Icon.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_content/src/View/Article/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_content/src/View/Articles/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Administrator\\View\\Featured\\HtmlView\:\:\$hits\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_content/src/View/Featured/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Administrator\\View\\Featured\\HtmlView\:\:\$vote\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_content/src/View/Featured/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_content/src/View/Featured/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Administrator\\View\\Article\\HtmlView\:\:\$configFieldsets\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_content/tmpl/article/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Administrator\\View\\Article\\HtmlView\:\:\$hiddenFieldsets\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_content/tmpl/article/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Administrator\\View\\Article\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_content/tmpl/article/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Administrator\\View\\Featured\\HtmlView\:\:\$hits\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_content/tmpl/featured/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Administrator\\View\\Featured\\HtmlView\:\:\$vote\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_content/tmpl/featured/default.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_contenthistory/src/Controller/HistoryController.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contenthistory/src/Helper/ContenthistoryHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contenthistory/src/Helper/ContenthistoryHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contenthistory/src/Helper/ContenthistoryHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contenthistory/src/Model/CompareModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_contenthistory/src/Model/CompareModel.php + + - + message: ''' + #^Call to deprecated method addIncludePath\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Should not be used anymore as tables are loaded through the MvcFactory$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contenthistory/src/Model/HistoryModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_contenthistory/src/Model/HistoryModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_contenthistory/src/Model/HistoryModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contenthistory/src/Model/HistoryModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_contenthistory/src/Model/HistoryModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_contenthistory/src/Model/PreviewModel.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_contenthistory/src/View/Compare/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_contenthistory/src/View/History/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_contenthistory/src/View/Preview/HtmlView.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_fields/src/Field/ComponentsFieldgroupField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_fields/src/Field/ComponentsFieldsField.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: administrator/components/com_fields/src/Helper/FieldsHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_fields/src/Helper/FieldsHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_fields/src/Helper/FieldsHelper.php + + - + message: ''' + #^Call to deprecated method cleanCache\(\) of class Joomla\\Component\\Fields\\Administrator\\Model\\FieldModel\: + 4\.3 will be removed in 6\.0$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_fields/src/Model/FieldModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_fields/src/Model/FieldModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: administrator/components/com_fields/src/Model/FieldModel.php + + - + message: ''' + #^Call to deprecated method prepareForm\(\) of interface Joomla\\CMS\\Fields\\FieldsFormServiceInterface\: + 5\.1\.0 will be removed in 7\.0 + Use the FieldServiceInterface instead$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_fields/src/Model/FieldModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 5 + path: administrator/components/com_fields/src/Model/FieldModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_fields/src/Model/GroupModel.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_fields/src/Table/FieldTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_fields/src/Table/FieldTable.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_fields/src/Table/GroupTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_fields/src/Table/GroupTable.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Fields\\Administrator\\View\\Field\\HtmlView\:\:\$canDo\.$#' + identifier: property.notFound + count: 2 + path: administrator/components/com_fields/src/View/Field/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_fields/src/View/Field/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_fields/src/View/Fields/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_fields/src/View/Group/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_fields/src/View/Groups/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Fields\\Administrator\\View\\Field\\HtmlView\:\:\$canDo\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_fields/tmpl/field/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Fields\\Administrator\\View\\Field\\HtmlView\:\:\$fields\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_fields/tmpl/field/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Fields\\Administrator\\View\\Field\\HtmlView\:\:\$ignore_fieldsets\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_fields/tmpl/field/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Fields\\Administrator\\View\\Field\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_fields/tmpl/field/edit.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_fields/tmpl/fields/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Fields\\Administrator\\View\\Group\\HtmlView\:\:\$fields\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_fields/tmpl/group/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Fields\\Administrator\\View\\Group\\HtmlView\:\:\$ignore_fieldsets\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_fields/tmpl/group/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Fields\\Administrator\\View\\Group\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_fields/tmpl/group/edit.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_finder/src/Controller/FilterController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/Controller/FilterController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/Controller/IndexController.php + + - + message: ''' + #^Parameter \$data of method Joomla\\Component\\Finder\\Administrator\\Controller\\IndexerController\:\:sendResponse\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: administrator/components/com_finder/src/Controller/IndexerController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/Controller/SearchesController.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_finder/src/Field/ContentmapField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_finder/src/Field/ContenttypesField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_finder/src/Helper/LanguageHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_finder/src/Indexer/Adapter.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/Indexer/Adapter.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_finder/src/Indexer/Helper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_finder/src/Indexer/Helper.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/Indexer/Helper.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_finder/src/Indexer/Indexer.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_finder/src/Indexer/Indexer.php + + - + message: ''' + #^Casting class Joomla\\CMS\\Object\\CMSObject to string is deprecated\.\: + 4\.3 will be removed in 6\.0 + Classes should provide their own __toString\(\) implementation\.$# + ''' + identifier: class.toStringDeprecated + count: 1 + path: administrator/components/com_finder/src/Indexer/Indexer.php + + - + message: ''' + #^Parameter \$data of method Joomla\\Component\\Finder\\Administrator\\Indexer\\Indexer\:\:setState\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: administrator/components/com_finder/src/Indexer/Indexer.php + + - + message: ''' + #^Return type of method Joomla\\Component\\Finder\\Administrator\\Indexer\\Indexer\:\:getState\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: return.deprecatedClass + count: 1 + path: administrator/components/com_finder/src/Indexer/Indexer.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_finder/src/Indexer/Query.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 8 + path: administrator/components/com_finder/src/Indexer/Taxonomy.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_finder/src/Indexer/Taxonomy.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/Indexer/Taxonomy.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_finder/src/Indexer/Taxonomy.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_finder/src/Model/FilterModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/Model/FilterModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/Model/IndexModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 5 + path: administrator/components/com_finder/src/Model/IndexModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 8 + path: administrator/components/com_finder/src/Model/IndexModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_finder/src/Model/IndexModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/Model/MapsModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 5 + path: administrator/components/com_finder/src/Model/MapsModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 8 + path: administrator/components/com_finder/src/Model/MapsModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_finder/src/Model/MapsModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/Model/SearchesModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_finder/src/Model/StatisticsModel.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: administrator/components/com_finder/src/Model/StatisticsModel.php + + - + message: ''' + #^Return type of method Joomla\\Component\\Finder\\Administrator\\Model\\StatisticsModel\:\:getData\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: return.deprecatedClass + count: 1 + path: administrator/components/com_finder/src/Model/StatisticsModel.php + + - + message: ''' + #^Call to deprecated method getCache\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the cache controller factory instead + Example\: + Factory\:\:getContainer\(\)\-\>get\(CacheControllerFactoryInterface\:\:class\)\-\>createCacheController\(\$handler, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_finder/src/Service/HTML/Filter.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 4 + path: administrator/components/com_finder/src/Service/HTML/Filter.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_finder/src/Service/HTML/Filter.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_finder/src/Service/HTML/Finder.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_finder/src/Service/HTML/Query.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_finder/src/Table/FilterTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_finder/src/Table/FilterTable.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/Table/MapTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_finder/src/Table/MapTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/View/Filter/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/View/Filters/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/View/Index/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/View/Maps/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/View/Searches/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_finder/src/View/Statistics/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Finder\\Administrator\\View\\Filter\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_finder/tmpl/filter/edit.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_finder/tmpl/indexer/debug.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_finder/tmpl/indexer/default.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_finder/tmpl/maps/default.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_guidedtours/src/Helper/GuidedtoursHelper.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_guidedtours/src/Model/TourModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 7 + path: administrator/components/com_guidedtours/src/Model/TourModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_guidedtours/src/Model/TourModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 5 + path: administrator/components/com_guidedtours/src/Model/TourModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_guidedtours/src/Model/TourModel.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: administrator/components/com_guidedtours/src/Model/TourModel.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_guidedtours/src/Table/StepTable.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_guidedtours/src/Table/TourTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_guidedtours/src/View/Step/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_guidedtours/src/View/Steps/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_guidedtours/src/View/Tour/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_guidedtours/src/View/Tours/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Guidedtours\\Administrator\\View\\Step\\HtmlView\:\:\$fields\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_guidedtours/tmpl/step/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Guidedtours\\Administrator\\View\\Step\\HtmlView\:\:\$hidden_fields\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_guidedtours/tmpl/step/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Guidedtours\\Administrator\\View\\Step\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_guidedtours/tmpl/step/edit.php + + - + message: '#^Access to property \$items on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 4 + path: administrator/components/com_guidedtours/tmpl/steps/default.php + + - + message: '#^Access to property \$pagination on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_guidedtours/tmpl/steps/default.php + + - + message: '#^Access to property \$state on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 3 + path: administrator/components/com_guidedtours/tmpl/steps/default.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 6 + path: administrator/components/com_guidedtours/tmpl/steps/default.php + + - + message: '#^Call to method getCurrentUser\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_guidedtours/tmpl/steps/default.php + + - + message: '#^Call to method getDocument\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_guidedtours/tmpl/steps/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Guidedtours\\Administrator\\View\\Tour\\HtmlView\:\:\$fields\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_guidedtours/tmpl/tour/edit.php + + - + message: '#^Access to property \$items on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 4 + path: administrator/components/com_guidedtours/tmpl/tours/default.php + + - + message: '#^Access to property \$pagination on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_guidedtours/tmpl/tours/default.php + + - + message: '#^Access to property \$state on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 4 + path: administrator/components/com_guidedtours/tmpl/tours/default.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 7 + path: administrator/components/com_guidedtours/tmpl/tours/default.php + + - + message: '#^Call to method getDocument\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_guidedtours/tmpl/tours/default.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/Controller/ManageController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/Controller/UpdatesitesController.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Object\\CMSObject\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 7 + path: administrator/components/com_installer/src/Helper/InstallerHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 4 + path: administrator/components/com_installer/src/Helper/InstallerHelper.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 2 + path: administrator/components/com_installer/src/Helper/InstallerHelper.php + + - + message: ''' + #^Parameter \$extension of anonymous function has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: parameter.deprecatedClass + count: 4 + path: administrator/components/com_installer/src/Helper/InstallerHelper.php + + - + message: ''' + #^Parameter \$extension of method Joomla\\Component\\Installer\\Administrator\\Helper\\InstallerHelper\:\:getDownloadKey\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: administrator/components/com_installer/src/Helper/InstallerHelper.php + + - + message: ''' + #^Return type of method Joomla\\Component\\Installer\\Administrator\\Helper\\InstallerHelper\:\:getUpdateSitesInformation\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: return.deprecatedClass + count: 1 + path: administrator/components/com_installer/src/Helper/InstallerHelper.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/DatabaseModel.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_installer/src/Model/DiscoverModel.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_installer/src/Model/InstallModel.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Updater\\Update\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/InstallModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/InstallerModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/LanguagesModel.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_installer/src/Model/ManageModel.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Changelog\\Changelog\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_installer/src/Model/ManageModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/ManageModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/ManageModel.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_installer/src/Model/UpdateModel.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Updater\\Update\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_installer/src/Model/UpdateModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Form\\Form\: + 4\.3 will be removed in 6\.0 + Use the FormFactory service from the container + Example\: Factory\:\:getContainer\(\)\-\>get\(FormFactoryInterface\:\:class\)\-\>createForm\(\$name, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/UpdateModel.php + + - + message: ''' + #^Call to deprecated method set\(\) of class Joomla\\CMS\\Updater\\Update\: + 4\.3\.0 will be removed in 6\.0 + Create a proper setter function for the property$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_installer/src/Model/UpdateModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/UpdateModel.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/UpdatesiteModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/UpdatesitesModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/UpdatesitesModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/UpdatesitesModel.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: administrator/components/com_installer/src/Model/UpdatesitesModel.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/View/Discover/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Installer\\Administrator\\View\\Install\\HtmlView\:\:\$paths\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_installer/src/View/Install/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Installer\\Administrator\\View\\Languages\\HtmlView\:\:\$installedLang\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_installer/src/View/Languages/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/View/Languages/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/View/Manage/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Installer\\Administrator\\View\\Update\\HtmlView\:\:\$paths\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_installer/src/View/Update/HtmlView.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: administrator/components/com_installer/src/View/Update/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/View/Updatesite/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_installer/src/View/Updatesites/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Installer\\Administrator\\View\\Warnings\\HtmlView\:\:\$messages\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_installer/src/View/Warnings/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Installer\\Administrator\\View\\Warnings\\HtmlView\:\:\$messages\.$#' + identifier: property.notFound + count: 2 + path: administrator/components/com_installer/tmpl/warnings/default.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_joomlaupdate/src/Controller/UpdateController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_joomlaupdate/src/Controller/UpdateController.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Updater\\Update\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_joomlaupdate/src/Model/UpdateModel.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\MVC\\Model\\BaseDatabaseModel\: + 4\.3 will be removed in 6\.0 + Use getDatabase\(\) instead + Example\: \$model\-\>getDatabase\(\);$# + ''' + identifier: method.deprecated + count: 10 + path: administrator/components/com_joomlaupdate/src/Model/UpdateModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_joomlaupdate/src/Model/UpdateModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_joomlaupdate/src/Model/UpdateModel.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_joomlaupdate/src/Model/UpdateModel.php + + - + message: ''' + #^Call to deprecated method set\(\) of class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3\.0 will be removed in 6\.0 + Create a proper setter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_joomlaupdate/src/Model/UpdateModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_joomlaupdate/src/Model/UpdateModel.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Joomlaupdate\\Administrator\\View\\Joomlaupdate\\HtmlView\:\:\$langKey\.$#' + identifier: property.notFound + count: 3 + path: administrator/components/com_joomlaupdate/src/View/Joomlaupdate/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Joomlaupdate\\Administrator\\View\\Joomlaupdate\\HtmlView\:\:\$updateSourceKey\.$#' + identifier: property.notFound + count: 3 + path: administrator/components/com_joomlaupdate/src/View/Joomlaupdate/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Joomlaupdate\\Administrator\\View\\Joomlaupdate\\HtmlView\:\:\$langKey\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/noupdate.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Joomlaupdate\\Administrator\\View\\Joomlaupdate\\HtmlView\:\:\$updateSourceKey\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/noupdate.php + + - + message: '#^Access to property \$defaultBackendTemplate on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/preupdatecheck.php + + - + message: '#^Access to property \$isDefaultBackendTemplate on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/preupdatecheck.php + + - + message: '#^Access to property \$noVersionCheck on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 3 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/preupdatecheck.php + + - + message: '#^Access to property \$nonCoreCriticalPlugins on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/preupdatecheck.php + + - + message: '#^Access to property \$nonCoreExtensions on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/preupdatecheck.php + + - + message: '#^Access to property \$phpOptions on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/preupdatecheck.php + + - + message: '#^Access to property \$phpSettings on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/preupdatecheck.php + + - + message: '#^Access to property \$updateInfo on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 7 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/preupdatecheck.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/preupdatecheck.php + + - + message: '#^Call to method getCurrentUser\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/preupdatecheck.php + + - + message: '#^Call to method getDocument\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/preupdatecheck.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Joomlaupdate\\Administrator\\View\\Joomlaupdate\\HtmlView\:\:\$langKey\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/reinstall.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Joomlaupdate\\Administrator\\View\\Joomlaupdate\\HtmlView\:\:\$updateSourceKey\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/reinstall.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Joomlaupdate\\Administrator\\View\\Joomlaupdate\\HtmlView\:\:\$langKey\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/update.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Joomlaupdate\\Administrator\\View\\Joomlaupdate\\HtmlView\:\:\$updateSourceKey\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_joomlaupdate/tmpl/joomlaupdate/update.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_joomlaupdate/tmpl/update/default.php + + - + message: '#^Access to property \$noBackupCheck on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 3 + path: administrator/components/com_joomlaupdate/tmpl/upload/default.php + + - + message: '#^Access to property \$updateInfo on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 5 + path: administrator/components/com_joomlaupdate/tmpl/upload/default.php + + - + message: '#^Access to property \$warnings on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_joomlaupdate/tmpl/upload/default.php + + - + message: '#^Call to method getDocument\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_joomlaupdate/tmpl/upload/default.php + + - + message: ''' + #^Access to deprecated static property \$language of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticProperty.deprecated + count: 2 + path: administrator/components/com_languages/src/Controller/InstalledController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_languages/src/Controller/InstalledController.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Language\\Language\: + 4\.3 will be removed in 6\.0 + Use the language factory instead + Example\: Factory\:\:getContainer\(\)\-\>get\(LanguageFactoryInterface\:\:class\)\-\>createLanguage\(\$lang, \$debug\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_languages/src/Controller/InstalledController.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_languages/src/Controller/InstalledController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_languages/src/Controller/OverrideController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/Controller/OverrideController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/Controller/OverridesController.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 7 + path: administrator/components/com_languages/src/Helper/MultilangstatusHelper.php + + - + message: '#^Method Joomla\\Component\\Languages\\Administrator\\Helper\\MultilangstatusHelper\:\:getDefaultHomeModule\(\) should return bool but return statement is missing\.$#' + identifier: return.missing + count: 1 + path: administrator/components/com_languages/src/Helper/MultilangstatusHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_languages/src/Model/InstalledModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_languages/src/Model/InstalledModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_languages/src/Model/InstalledModel.php + + - + message: ''' + #^Call to deprecated method cleanCache\(\) of class Joomla\\Component\\Languages\\Administrator\\Model\\LanguageModel\: + 4\.3 will be removed in 6\.0$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/Model/LanguageModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 6 + path: administrator/components/com_languages/src/Model/LanguageModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_languages/src/Model/LanguageModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/Model/LanguageModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 7 + path: administrator/components/com_languages/src/Model/LanguageModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_languages/src/Model/LanguageModel.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: administrator/components/com_languages/src/Model/LanguageModel.php + + - + message: ''' + #^Call to deprecated method cleanCache\(\) of class Joomla\\Component\\Languages\\Administrator\\Model\\LanguagesModel\: + 4\.3 will be removed in 6\.0$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/Model/LanguagesModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_languages/src/Model/LanguagesModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/Model/LanguagesModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Language\\Language\: + 4\.3 will be removed in 6\.0 + Use the language factory instead + Example\: Factory\:\:getContainer\(\)\-\>get\(LanguageFactoryInterface\:\:class\)\-\>createLanguage\(\$lang, \$debug\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_languages/src/Model/OverrideModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/Model/OverrideModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/Model/OverridesModel.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Installed\\HtmlView\:\:\$total\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/src/View/Installed/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/View/Installed/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/View/Language/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/View/Languages/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$contentlangs\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/src/View/Multilangstatus/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$defaultHome\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/src/View/Multilangstatus/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$default_lang\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/src/View/Multilangstatus/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$homepages\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/src/View/Multilangstatus/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$homes\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/src/View/Multilangstatus/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$language_filter\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/src/View/Multilangstatus/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$listUsersError\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/src/View/Multilangstatus/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$site_langs\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/src/View/Multilangstatus/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$statuses\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/src/View/Multilangstatus/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$switchers\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/src/View/Multilangstatus/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/View/Override/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_languages/src/View/Overrides/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$contentlangs\.$#' + identifier: property.notFound + count: 3 + path: administrator/components/com_languages/tmpl/multilangstatus/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$default_lang\.$#' + identifier: property.notFound + count: 3 + path: administrator/components/com_languages/tmpl/multilangstatus/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$homepages\.$#' + identifier: property.notFound + count: 5 + path: administrator/components/com_languages/tmpl/multilangstatus/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$homes\.$#' + identifier: property.notFound + count: 4 + path: administrator/components/com_languages/tmpl/multilangstatus/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$language_filter\.$#' + identifier: property.notFound + count: 4 + path: administrator/components/com_languages/tmpl/multilangstatus/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$listUsersError\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/tmpl/multilangstatus/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$site_langs\.$#' + identifier: property.notFound + count: 4 + path: administrator/components/com_languages/tmpl/multilangstatus/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$statuses\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_languages/tmpl/multilangstatus/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Languages\\Administrator\\View\\Multilangstatus\\HtmlView\:\:\$switchers\.$#' + identifier: property.notFound + count: 4 + path: administrator/components/com_languages/tmpl/multilangstatus/default.php + + - + message: ''' + #^Call to deprecated method getCache\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the cache controller factory instead + Example\: + Factory\:\:getContainer\(\)\-\>get\(CacheControllerFactoryInterface\:\:class\)\-\>createCacheController\(\$handler, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_login/src/Model/LoginModel.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_login/src/Model/LoginModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_login/src/Model/LoginModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_mails/src/Controller/TemplateController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_mails/src/Controller/TemplateController.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_mails/src/Helper/MailsHelper.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 8 + path: administrator/components/com_mails/src/Model/TemplateModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_mails/src/Model/TemplateModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 8 + path: administrator/components/com_mails/src/Model/TemplateModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_mails/src/Model/TemplateModel.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: classConstant.deprecatedClass + count: 2 + path: administrator/components/com_mails/src/Model/TemplateModel.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_mails/src/View/Template/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_mails/src/View/Templates/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Mails\\Administrator\\View\\Template\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_mails/tmpl/template/edit.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Object\\CMSObject\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_media/helpers/media.php + + - + message: ''' + #^Parameter \$mediaObject of method MediaHelper\:\:getContentTypeLink\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: administrator/components/com_media/helpers/media.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_media/layouts/toolbar/create-folder.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_media/layouts/toolbar/delete.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_media/layouts/toolbar/upload.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_media/src/Controller/PluginController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Object\\CMSObject\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_media/src/Model/ApiModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 9 + path: administrator/components/com_media/src/Model/ApiModel.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 4 + path: administrator/components/com_media/src/Model/ApiModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_media/src/Model/MediaModel.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Media\\Administrator\\View\\File\\HtmlView\:\:\$file\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_media/src/View/File/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Media\\Administrator\\View\\File\\HtmlView\:\:\$form\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_media/src/View/File/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Media\\Administrator\\View\\File\\HtmlView\:\:\$params\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_media/src/View/File/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Media\\Administrator\\View\\File\\HtmlView\:\:\$file\.$#' + identifier: property.notFound + count: 2 + path: administrator/components/com_media/tmpl/file/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Media\\Administrator\\View\\File\\HtmlView\:\:\$form\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_media/tmpl/file/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Media\\Administrator\\View\\File\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_media/tmpl/file/default.php + + - + message: ''' + #^Call to deprecated method addIncludePath\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Should not be used anymore as tables are loaded through the MvcFactory$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_menus/src/Controller/AjaxController.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_menus/src/Controller/AjaxController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_menus/src/Controller/ItemController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_menus/src/Controller/ItemController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_menus/src/Controller/ItemsController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_menus/src/Controller/ItemsController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_menus/src/Controller/MenuController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_menus/src/Controller/MenuController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_menus/src/Controller/MenusController.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_menus/src/Helper/AssociationsHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 5 + path: administrator/components/com_menus/src/Helper/MenusHelper.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_menus/src/Helper/MenusHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_menus/src/Helper/MenusHelper.php + + - + message: ''' + #^Call to deprecated method cleanCache\(\) of class Joomla\\Component\\Menus\\Administrator\\Model\\ItemModel\: + 4\.3 will be removed in 6\.0$# + ''' + identifier: method.deprecated + count: 7 + path: administrator/components/com_menus/src/Model/ItemModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 22 + path: administrator/components/com_menus/src/Model/ItemModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_menus/src/Model/ItemModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_menus/src/Model/ItemModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 35 + path: administrator/components/com_menus/src/Model/ItemModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_menus/src/Model/ItemModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_menus/src/Model/ItemsModel.php + + - + message: ''' + #^Call to deprecated method cleanCache\(\) of class Joomla\\Component\\Menus\\Administrator\\Model\\MenuModel\: + 4\.3 will be removed in 6\.0$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_menus/src/Model/MenuModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 6 + path: administrator/components/com_menus/src/Model/MenuModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_menus/src/Model/MenuModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_menus/src/Model/MenuModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 5 + path: administrator/components/com_menus/src/Model/MenuModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_menus/src/Model/MenuModel.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: administrator/components/com_menus/src/Model/MenuModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_menus/src/Model/MenusModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_menus/src/Model/MenutypesModel.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 8 + path: administrator/components/com_menus/src/Model/MenutypesModel.php + + - + message: ''' + #^Parameter \$option of method Joomla\\Component\\Menus\\Administrator\\Model\\MenutypesModel\:\:addReverseLookupUrl\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: administrator/components/com_menus/src/Model/MenutypesModel.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_menus/src/Service/HTML/Menus.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_menus/src/Table/MenuTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_menus/src/View/Item/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Menus\\Administrator\\View\\Items\\HtmlView\:\:\$total\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_menus/src/View/Items/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_menus/src/View/Items/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_menus/src/View/Menu/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_menus/src/View/Menus/HtmlView.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 5 + path: administrator/components/com_menus/src/View/Menutypes/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Menus\\Administrator\\View\\Item\\HtmlView\:\:\$fields\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_menus/tmpl/item/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Menus\\Administrator\\View\\Item\\HtmlView\:\:\$fieldsets\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_menus/tmpl/item/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Menus\\Administrator\\View\\Item\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_menus/tmpl/item/edit.php + + - + message: '#^File ends with a trailing whitespace\. This may cause problems when running the code in the web browser\. Remove the closing \?\> mark or remove the whitespace\.$#' + identifier: whitespace.fileEnd + count: 1 + path: administrator/components/com_menus/tmpl/items/default_batch_body.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_messages/src/Controller/ConfigController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_messages/src/Controller/ConfigController.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_messages/src/Model/ConfigModel.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: administrator/components/com_messages/src/Model/ConfigModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_messages/src/Model/MessageModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Language\\Language\: + 4\.3 will be removed in 6\.0 + Use the language factory instead + Example\: Factory\:\:getContainer\(\)\-\>get\(LanguageFactoryInterface\:\:class\)\-\>createLanguage\(\$lang, \$debug\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_messages/src/Model/MessageModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_messages/src/Model/MessageModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 17 + path: administrator/components/com_messages/src/Model/MessageModel.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_messages/src/Service/HTML/Messages.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 5 + path: administrator/components/com_messages/src/Table/MessageTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_messages/src/View/Config/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_messages/src/View/Message/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_messages/src/View/Messages/HtmlView.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_modules/layouts/joomla/form/field/modulespositionedit.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: administrator/components/com_modules/src/Helper/ModulesHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_modules/src/Helper/ModulesHelper.php + + - + message: ''' + #^Call to deprecated method cleanCache\(\) of class Joomla\\Component\\Modules\\Administrator\\Model\\ModuleModel\: + 4\.3 will be removed in 6\.0$# + ''' + identifier: method.deprecated + count: 5 + path: administrator/components/com_modules/src/Model/ModuleModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 11 + path: administrator/components/com_modules/src/Model/ModuleModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_modules/src/Model/ModuleModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_modules/src/Model/ModuleModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_modules/src/Model/ModuleModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 14 + path: administrator/components/com_modules/src/Model/ModuleModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_modules/src/Model/ModuleModel.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: administrator/components/com_modules/src/Model/ModuleModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_modules/src/Model/ModulesModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_modules/src/Model/PositionsModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_modules/src/Model/PositionsModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_modules/src/Model/SelectModel.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_modules/src/View/Module/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Modules\\Administrator\\View\\Modules\\HtmlView\:\:\$clientId\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_modules/src/View/Modules/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Modules\\Administrator\\View\\Modules\\HtmlView\:\:\$total\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_modules/src/View/Modules/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_modules/src/View/Modules/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_modules/src/View/Select/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Modules\\Administrator\\View\\Module\\HtmlView\:\:\$fields\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_modules/tmpl/module/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Modules\\Administrator\\View\\Module\\HtmlView\:\:\$fieldset\.$#' + identifier: property.notFound + count: 2 + path: administrator/components/com_modules/tmpl/module/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Modules\\Administrator\\View\\Module\\HtmlView\:\:\$fieldsets\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_modules/tmpl/module/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Modules\\Administrator\\View\\Module\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_modules/tmpl/module/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Modules\\Administrator\\View\\Modules\\HtmlView\:\:\$total\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_modules/tmpl/modules/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Modules\\Administrator\\View\\Modules\\HtmlView\:\:\$clientId\.$#' + identifier: property.notFound + count: 3 + path: administrator/components/com_modules/tmpl/modules/emptystate.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Modules\\Administrator\\View\\Modules\\HtmlView\:\:\$total\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_modules/tmpl/modules/modal.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_newsfeeds/src/Controller/NewsfeedController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_newsfeeds/src/Controller/NewsfeedController.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_newsfeeds/src/Helper/AssociationsHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_newsfeeds/src/Helper/NewsfeedsHelper.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_newsfeeds/src/Model/NewsfeedModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_newsfeeds/src/Model/NewsfeedModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_newsfeeds/src/Model/NewsfeedModel.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_newsfeeds/src/Service/HTML/AdministratorService.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_newsfeeds/src/Table/NewsfeedTable.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_newsfeeds/src/Table/NewsfeedTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 6 + path: administrator/components/com_newsfeeds/src/Table/NewsfeedTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_newsfeeds/src/View/Newsfeed/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_newsfeeds/src/View/Newsfeeds/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Newsfeeds\\Administrator\\View\\Newsfeed\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_newsfeeds/tmpl/newsfeed/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Newsfeeds\\Administrator\\View\\Newsfeed\\HtmlView\:\:\$fieldset\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_newsfeeds/tmpl/newsfeed/edit_display.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_plugins/src/Helper/PluginsHelper.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: administrator/components/com_plugins/src/Helper/PluginsHelper.php + + - + message: ''' + #^Return type of method Joomla\\Component\\Plugins\\Administrator\\Helper\\PluginsHelper\:\:parseXMLTemplateFile\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: return.deprecatedClass + count: 1 + path: administrator/components/com_plugins/src/Helper/PluginsHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_plugins/src/Model/PluginModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_plugins/src/Model/PluginModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_plugins/src/Model/PluginModel.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: administrator/components/com_plugins/src/Model/PluginModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_plugins/src/Model/PluginsModel.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_plugins/src/View/Plugin/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_plugins/src/View/Plugins/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Plugins\\Administrator\\View\\Plugin\\HtmlView\:\:\$fields\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_plugins/tmpl/plugin/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Plugins\\Administrator\\View\\Plugin\\HtmlView\:\:\$fieldset\.$#' + identifier: property.notFound + count: 2 + path: administrator/components/com_plugins/tmpl/plugin/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Plugins\\Administrator\\View\\Plugin\\HtmlView\:\:\$fieldsets\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_plugins/tmpl/plugin/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Plugins\\Administrator\\View\\Plugin\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_plugins/tmpl/plugin/edit.php + + - + message: ''' + #^Call to deprecated method getCache\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the cache controller factory instead + Example\: + Factory\:\:getContainer\(\)\-\>get\(CacheControllerFactoryInterface\:\:class\)\-\>createCacheController\(\$handler, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 6 + path: administrator/components/com_postinstall/src/Model/MessagesModel.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Postinstall\\Administrator\\View\\Messages\\HtmlView\:\:\$eid\.$#' + identifier: property.notFound + count: 2 + path: administrator/components/com_postinstall/src/View/Messages/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Postinstall\\Administrator\\View\\Messages\\HtmlView\:\:\$extension_options\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_postinstall/src/View/Messages/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Postinstall\\Administrator\\View\\Messages\\HtmlView\:\:\$joomlaFilesExtensionId\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_postinstall/src/View/Messages/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Postinstall\\Administrator\\View\\Messages\\HtmlView\:\:\$token\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_postinstall/src/View/Messages/HtmlView.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_postinstall/src/View/Messages/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Postinstall\\Administrator\\View\\Messages\\HtmlView\:\:\$eid\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_postinstall/tmpl/messages/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Postinstall\\Administrator\\View\\Messages\\HtmlView\:\:\$extension_options\.$#' + identifier: property.notFound + count: 2 + path: administrator/components/com_postinstall/tmpl/messages/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Postinstall\\Administrator\\View\\Messages\\HtmlView\:\:\$token\.$#' + identifier: property.notFound + count: 5 + path: administrator/components/com_postinstall/tmpl/messages/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Postinstall\\Administrator\\View\\Messages\\HtmlView\:\:\$eid\.$#' + identifier: property.notFound + count: 2 + path: administrator/components/com_postinstall/tmpl/messages/emptystate.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Postinstall\\Administrator\\View\\Messages\\HtmlView\:\:\$extension_options\.$#' + identifier: property.notFound + count: 2 + path: administrator/components/com_postinstall/tmpl/messages/emptystate.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Postinstall\\Administrator\\View\\Messages\\HtmlView\:\:\$token\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_postinstall/tmpl/messages/emptystate.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_privacy/src/Controller/ConsentsController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 6 + path: administrator/components/com_privacy/src/Controller/RequestController.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_privacy/src/Helper/PrivacyHelper.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_privacy/src/Model/ConsentsModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_privacy/src/Model/ExportModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Language\\Language\: + 4\.3 will be removed in 6\.0 + Use the language factory instead + Example\: Factory\:\:getContainer\(\)\-\>get\(LanguageFactoryInterface\:\:class\)\-\>createLanguage\(\$lang, \$debug\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_privacy/src/Model/ExportModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_privacy/src/Model/ExportModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 10 + path: administrator/components/com_privacy/src/Model/ExportModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_privacy/src/Model/RemoveModel.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_privacy/src/Model/RemoveModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 5 + path: administrator/components/com_privacy/src/Model/RemoveModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_privacy/src/Model/RequestModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Language\\Language\: + 4\.3 will be removed in 6\.0 + Use the language factory instead + Example\: Factory\:\:getContainer\(\)\-\>get\(LanguageFactoryInterface\:\:class\)\-\>createLanguage\(\$lang, \$debug\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_privacy/src/Model/RequestModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_privacy/src/Model/RequestModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 10 + path: administrator/components/com_privacy/src/Model/RequestModel.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_privacy/src/View/Capabilities/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_privacy/src/View/Consents/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_privacy/src/View/Export/XmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_privacy/src/View/Request/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_privacy/src/View/Requests/HtmlView.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_privacy/tmpl/requests/default.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_redirect/src/Controller/LinksController.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_redirect/src/Helper/RedirectHelper.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_redirect/src/Model/LinkModel.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_redirect/src/Service/HTML/Redirect.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 6 + path: administrator/components/com_redirect/src/Table/LinkTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_redirect/src/View/Link/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_redirect/src/View/Links/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_scheduler/src/Controller/TasksController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_scheduler/src/Model/TaskModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_scheduler/src/Model/TaskModel.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: administrator/components/com_scheduler/src/Model/TasksModel.php + + - + message: ''' + #^Return type of anonymous function has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: return.deprecatedClass + count: 1 + path: administrator/components/com_scheduler/src/Model/TasksModel.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_scheduler/src/Table/TaskTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_scheduler/src/Table/TaskTable.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\MVC\\View\\AbstractView\: + 5\.3\.0 will be removed in 7\.0\. + Retrieve the model with \$model \= \$this\-\>getModel\(\); and call the methods + to the model directly, e\.g\. \$model\-\>getItems\(\) instead of \$this\-\>get\('Items'\)\.$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_scheduler/src/View/Logs/HtmlView.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Toolbar\\Toolbar\: + 4\.0 will be removed in 6\.0 + Use the ToolbarFactoryInterface instead + Example\: + Factory\:\:getContainer\(\)\-\>get\(ToolbarFactoryInterface\:\:class\)\-\>createToolbar\(\$name\)$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_scheduler/src/View/Logs/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_scheduler/src/View/Select/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Scheduler\\Administrator\\View\\Tasks\\HtmlView\:\:\$hasDueTasks\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_scheduler/src/View/Tasks/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_scheduler/src/View/Tasks/HtmlView.php + + - + message: '#^Access to property \$app on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_scheduler/tmpl/select/default.php + + - + message: '#^Access to property \$items on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_scheduler/tmpl/select/default.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_scheduler/tmpl/select/default.php + + - + message: '#^Call to method getDocument\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_scheduler/tmpl/select/default.php + + - + message: '#^Access to property \$app on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_scheduler/tmpl/task/edit.php + + - + message: '#^Access to property \$canDo on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_scheduler/tmpl/task/edit.php + + - + message: '#^Access to property \$fieldset on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_scheduler/tmpl/task/edit.php + + - + message: '#^Access to property \$form on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 10 + path: administrator/components/com_scheduler/tmpl/task/edit.php + + - + message: '#^Access to property \$ignore_fieldsets on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 4 + path: administrator/components/com_scheduler/tmpl/task/edit.php + + - + message: '#^Access to property \$item on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 5 + path: administrator/components/com_scheduler/tmpl/task/edit.php + + - + message: '#^Access to property \$useCoreUI on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_scheduler/tmpl/task/edit.php + + - + message: '#^Call to method getDocument\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_scheduler/tmpl/task/edit.php + + - + message: '#^Access to property \$hasDueTasks on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_scheduler/tmpl/tasks/default.php + + - + message: '#^Access to property \$items on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 4 + path: administrator/components/com_scheduler/tmpl/tasks/default.php + + - + message: '#^Access to property \$pagination on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_scheduler/tmpl/tasks/default.php + + - + message: '#^Access to property \$state on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_scheduler/tmpl/tasks/default.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 7 + path: administrator/components/com_scheduler/tmpl/tasks/default.php + + - + message: '#^Call to method getDocument\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_scheduler/tmpl/tasks/default.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_tags/src/Controller/TagController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_tags/src/Controller/TagController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 8 + path: administrator/components/com_tags/src/Model/TagModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_tags/src/Model/TagModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 11 + path: administrator/components/com_tags/src/Model/TagModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_tags/src/Model/TagModel.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_tags/src/Table/TagTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_tags/src/Table/TagTable.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: administrator/components/com_tags/src/Table/TagTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_tags/src/View/Tag/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_tags/src/View/Tags/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Tags\\Administrator\\View\\Tag\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_tags/tmpl/tag/edit.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\String\\Inflector\: + 3\.0 Use static methods without a class instance instead\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_tags/tmpl/tags/default.php + + - + message: ''' + #^Call to deprecated method toPlural\(\) of class Joomla\\String\\Inflector\: + 3\.0 Use Doctrine\\Common\\Inflector\\Inflector\:\:pluralize\(\) instead\.$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_tags/tmpl/tags/default.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_templates/src/Controller/StyleController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_templates/src/Controller/StyleController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_templates/src/Controller/TemplateController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_templates/src/Controller/TemplateController.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_templates/src/Helper/TemplatesHelper.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: administrator/components/com_templates/src/Helper/TemplatesHelper.php + + - + message: ''' + #^Return type of method Joomla\\Component\\Templates\\Administrator\\Helper\\TemplatesHelper\:\:parseXMLTemplateFile\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: return.deprecatedClass + count: 1 + path: administrator/components/com_templates/src/Helper/TemplatesHelper.php + + - + message: ''' + #^Call to deprecated method cleanCache\(\) of class Joomla\\Component\\Templates\\Administrator\\Model\\StyleModel\: + 4\.3 will be removed in 6\.0$# + ''' + identifier: method.deprecated + count: 5 + path: administrator/components/com_templates/src/Model/StyleModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 8 + path: administrator/components/com_templates/src/Model/StyleModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_templates/src/Model/StyleModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 6 + path: administrator/components/com_templates/src/Model/StyleModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 6 + path: administrator/components/com_templates/src/Model/StyleModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_templates/src/Model/TemplateModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_templates/src/Model/TemplateModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_templates/src/Table/StyleTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_templates/src/View/Style/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Styles\\HtmlView\:\:\$total\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_templates/src/View/Styles/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_templates/src/View/Styles/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Template\\HtmlView\:\:\$styles\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_templates/src/View/Template/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Template\\HtmlView\:\:\$stylesHTML\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_templates/src/View/Template/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Template\\HtmlView\:\:\$updatedList\.$#' + identifier: property.notFound + count: 2 + path: administrator/components/com_templates/src/View/Template/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_templates/src/View/Template/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Templates\\HtmlView\:\:\$total\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_templates/src/View/Templates/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_templates/src/View/Templates/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Style\\HtmlView\:\:\$fields\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_templates/tmpl/style/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Style\\HtmlView\:\:\$fieldset\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_templates/tmpl/style/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Style\\HtmlView\:\:\$fieldsets\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_templates/tmpl/style/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Style\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_templates/tmpl/style/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Styles\\HtmlView\:\:\$total\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_templates/tmpl/styles/default.php + + - + message: '#^Call to protected method folderTree\(\) of class Joomla\\Component\\Templates\\Administrator\\View\\Template\\HtmlView\.$#' + identifier: method.protected + count: 1 + path: administrator/components/com_templates/tmpl/template/default_folders.php + + - + message: '#^Call to protected method mediaFolderTree\(\) of class Joomla\\Component\\Templates\\Administrator\\View\\Template\\HtmlView\.$#' + identifier: method.protected + count: 1 + path: administrator/components/com_templates/tmpl/template/default_media_folders.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Template\\HtmlView\:\:\$styles\.$#' + identifier: property.notFound + count: 2 + path: administrator/components/com_templates/tmpl/template/default_modal_child_body.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_templates/tmpl/template/default_modal_child_body.php + + - + message: '#^Call to protected method directoryTree\(\) of class Joomla\\Component\\Templates\\Administrator\\View\\Template\\HtmlView\.$#' + identifier: method.protected + count: 1 + path: administrator/components/com_templates/tmpl/template/default_tree.php + + - + message: '#^Call to protected method mediaTree\(\) of class Joomla\\Component\\Templates\\Administrator\\View\\Template\\HtmlView\.$#' + identifier: method.protected + count: 1 + path: administrator/components/com_templates/tmpl/template/default_tree_media.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Template\\HtmlView\:\:\$updatedList\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_templates/tmpl/template/default_updated_files.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Templates\\Administrator\\View\\Templates\\HtmlView\:\:\$total\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_templates/tmpl/templates/default.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/Controller/MailController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/Controller/MethodController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/Controller/NoteController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/Controller/NoteController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_users/src/Controller/UsersController.php + + - + message: ''' + #^Parameter \$input of method Joomla\\Component\\Users\\Administrator\\Controller\\UsersController\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: administrator/components/com_users/src/Controller/UsersController.php + + - + message: ''' + #^Class Joomla\\Component\\Users\\Administrator\\Extension\\UsersComponent implements deprecated interface Joomla\\CMS\\Fields\\FieldsFormServiceInterface\: + 5\.1\.0 will be removed in 7\.0$# + ''' + identifier: class.implementsDeprecatedInterface + count: 1 + path: administrator/components/com_users/src/Extension/UsersComponent.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_users/src/Helper/DebugHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_users/src/Helper/DebugHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_users/src/Helper/Mfa.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_users/src/Helper/UsersHelper.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/Model/DebuggroupModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/Model/GroupModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_users/src/Model/GroupModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_users/src/Model/GroupModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_users/src/Model/GroupModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 5 + path: administrator/components/com_users/src/Model/GroupModel.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: administrator/components/com_users/src/Model/GroupModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_users/src/Model/GroupsModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_users/src/Model/LevelModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_users/src/Model/LevelModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_users/src/Model/LevelsModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 3 + path: administrator/components/com_users/src/Model/LevelsModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_users/src/Model/MailModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 5 + path: administrator/components/com_users/src/Model/MailModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_users/src/Model/NoteModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_users/src/Model/NoteModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/Model/NoteModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/Model/UserModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 6 + path: administrator/components/com_users/src/Model/UserModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\User\\User\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_users/src/Model/UserModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_users/src/Model/UserModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 7 + path: administrator/components/com_users/src/Model/UserModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\User\\User\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/Model/UserModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 26 + path: administrator/components/com_users/src/Model/UserModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 6 + path: administrator/components/com_users/src/Model/UserModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_users/src/Model/UsersModel.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/components/com_users/src/Service/HTML/Users.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_users/src/Service/HTML/Users.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_users/src/Table/MfaTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/Table/MfaTable.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_users/src/Table/NoteTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/Table/NoteTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/View/Debuggroup/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/View/Debuguser/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/View/Group/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/View/Groups/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/View/Level/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/View/Levels/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/View/Note/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/View/Notes/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/View/User/HtmlView.php + + - + message: ''' + #^Access to deprecated property \$db of class Joomla\\Component\\Users\\Administrator\\View\\Users\\HtmlView\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement use database from the container instead + Example\: Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: property.deprecated + count: 1 + path: administrator/components/com_users/src/View/Users/HtmlView.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_users/src/View/Users/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_users/src/View/Users/HtmlView.php + + - + message: '#^Access to property \$allowEntryBatching on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_users/tmpl/captive/select.php + + - + message: '#^Access to property \$mfaMethods on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 3 + path: administrator/components/com_users/tmpl/captive/select.php + + - + message: '#^Access to property \$records on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/captive/select.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_users/tmpl/captive/select.php + + - + message: '#^Call to method getModel\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_users/tmpl/captive/select.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Users\\Administrator\\View\\Group\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_users/tmpl/group/edit.php + + - + message: '#^Access to property \$backupCodes on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 5 + path: administrator/components/com_users/tmpl/method/backupcodes.php + + - + message: '#^Access to property \$record on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/method/backupcodes.php + + - + message: '#^Access to property \$returnURL on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 4 + path: administrator/components/com_users/tmpl/method/backupcodes.php + + - + message: '#^Access to property \$user on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_users/tmpl/method/backupcodes.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/method/backupcodes.php + + - + message: '#^Access to property \$isEditExisting on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/method/edit.php + + - + message: '#^Access to property \$record on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 4 + path: administrator/components/com_users/tmpl/method/edit.php + + - + message: '#^Access to property \$renderOptions on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 26 + path: administrator/components/com_users/tmpl/method/edit.php + + - + message: '#^Access to property \$returnURL on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 4 + path: administrator/components/com_users/tmpl/method/edit.php + + - + message: '#^Access to property \$title on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_users/tmpl/method/edit.php + + - + message: '#^Access to property \$user on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_users/tmpl/method/edit.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 8 + path: administrator/components/com_users/tmpl/method/edit.php + + - + message: '#^Call to method getModel\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/method/edit.php + + - + message: '#^Access to property \$isMandatoryMFASetup on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/default.php + + - + message: '#^Access to property \$methods on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/default.php + + - + message: '#^Access to property \$mfaActive on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_users/tmpl/methods/default.php + + - + message: '#^Access to property \$returnURL on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_users/tmpl/methods/default.php + + - + message: '#^Access to property \$user on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/default.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/default.php + + - + message: '#^Call to method loadTemplate\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/default.php + + - + message: '#^Call to method setLayout\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/default.php + + - + message: '#^Access to property \$isAdmin on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/firsttime.php + + - + message: '#^Access to property \$returnURL on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_users/tmpl/methods/firsttime.php + + - + message: '#^Access to property \$user on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/firsttime.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/firsttime.php + + - + message: '#^Call to method loadTemplate\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/firsttime.php + + - + message: '#^Call to method setLayout\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/firsttime.php + + - + message: '#^Access to property \$defaultMethod on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: administrator/components/com_users/tmpl/methods/list.php + + - + message: '#^Access to property \$methods on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/list.php + + - + message: '#^Access to property \$returnURL on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 8 + path: administrator/components/com_users/tmpl/methods/list.php + + - + message: '#^Access to property \$user on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 6 + path: administrator/components/com_users/tmpl/methods/list.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 13 + path: administrator/components/com_users/tmpl/methods/list.php + + - + message: '#^Call to method getDocument\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/list.php + + - + message: '#^Call to method getModel\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/methods/list.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Users\\Administrator\\View\\User\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_users/tmpl/user/edit.php + + - + message: '#^Access to property \$groups on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: administrator/components/com_users/tmpl/user/edit_groups.php + + - + message: '#^Call to deprecated method pluralize\(\) of class Doctrine\\Common\\Inflector\\Inflector\.$#' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_workflow/src/Controller/DisplayController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/Controller/StagesController.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\MVC\\Model\\BaseDatabaseModel\: + 4\.3 will be removed in 6\.0 + Use getDatabase\(\) instead + Example\: \$model\-\>getDatabase\(\);$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/Controller/WorkflowController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/Controller/WorkflowsController.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_workflow/src/Field/ComponentsWorkflowField.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: administrator/components/com_workflow/src/Model/StageModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/Model/StagesModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/Model/TransitionModel.php + + - + message: ''' + #^Return type of method Joomla\\Component\\Workflow\\Administrator\\Model\\TransitionModel\:\:getItem\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: return.deprecatedClass + count: 1 + path: administrator/components/com_workflow/src/Model/TransitionModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/Model/TransitionsModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/Model/WorkflowModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_workflow/src/Table/StageTable.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/components/com_workflow/src/Table/WorkflowTable.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 4 + path: administrator/components/com_workflow/src/Table/WorkflowTable.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/View/Stage/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/View/Stages/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/View/Transition/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/View/Transitions/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/View/Workflow/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/components/com_workflow/src/View/Workflows/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Workflow\\Administrator\\View\\Transition\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: administrator/components/com_workflow/tmpl/transition/edit.php + + - + message: '#^Instantiated class JConfig not found\.$#' + identifier: class.notFound + count: 1 + path: administrator/includes/framework.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/modules/mod_latest/src/Helper/LatestHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/modules/mod_latest/src/Helper/LatestHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/modules/mod_latest/src/Helper/LatestHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/modules/mod_menu/src/Menu/CssMenu.php + + - + message: '#^Access to protected property Joomla\\Module\\Menu\\Administrator\\Menu\\CssMenu\:\:\$application\.$#' + identifier: property.protected + count: 1 + path: administrator/modules/mod_menu/tmpl/default_submenu.php + + - + message: '#^Access to protected property Joomla\\Module\\Menu\\Administrator\\Menu\\CssMenu\:\:\$enabled\.$#' + identifier: property.protected + count: 2 + path: administrator/modules/mod_menu/tmpl/default_submenu.php + + - + message: '#^Access to protected property Joomla\\Module\\Menu\\Administrator\\Menu\\CssMenu\:\:\$params\.$#' + identifier: property.protected + count: 1 + path: administrator/modules/mod_menu/tmpl/default_submenu.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/modules/mod_popular/src/Helper/PopularHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/modules/mod_popular/src/Helper/PopularHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/modules/mod_popular/src/Helper/PopularHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/modules/mod_privacy_dashboard/src/Helper/PrivacyDashboardHelper.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/modules/mod_quickicon/src/Helper/QuickIconHelper.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of class Joomla\\CMS\\Application\\WebApplication\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: administrator/modules/mod_stats_admin/src/Helper/StatsAdminHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: administrator/modules/mod_submenu/mod_submenu.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/modules/mod_submenu/src/Menu/Menu.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/templates/atum/error.php + + - + message: '#^Access to protected property Joomla\\CMS\\Document\\ErrorDocument\:\:\$_error\.$#' + identifier: property.protected + count: 3 + path: administrator/templates/atum/error_full.php + + - + message: '#^Access to protected property Joomla\\CMS\\Document\\ErrorDocument\:\:\$_error\.$#' + identifier: property.protected + count: 3 + path: administrator/templates/atum/error_login.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/templates/atum/html/layouts/chromes/body.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/templates/atum/html/layouts/chromes/body.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/templates/atum/html/layouts/chromes/well.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/templates/atum/html/layouts/chromes/well.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: administrator/templates/atum/html/layouts/status.php + + - + message: '#^Access to protected property Joomla\\CMS\\Document\\ErrorDocument\:\:\$_error\.$#' + identifier: property.protected + count: 5 + path: administrator/templates/system/error.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: components/com_ajax/ajax.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: components/com_ajax/ajax.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: components/com_ajax/ajax.php + + - + message: ''' + #^Call to deprecated method getCache\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the cache controller factory instead + Example\: + Factory\:\:getContainer\(\)\-\>get\(CacheControllerFactoryInterface\:\:class\)\-\>createCacheController\(\$handler, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_banners/src/Model/BannerModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_banners/src/Model/BannersModel.php + + - + message: ''' + #^Parameter \$input of method Joomla\\Component\\Config\\Site\\Controller\\ConfigController\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: components/com_config/src/Controller/ConfigController.php + + - + message: ''' + #^Parameter \$input of method Joomla\\Component\\Config\\Site\\Controller\\ModulesController\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: components/com_config/src/Controller/ModulesController.php + + - + message: ''' + #^Parameter \$input of method Joomla\\Component\\Config\\Site\\Controller\\TemplatesController\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: components/com_config/src/Controller/TemplatesController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 5 + path: components/com_config/src/Model/FormModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Form\\Form\: + 4\.3 will be removed in 6\.0 + Use the FormFactory service from the container + Example\: Factory\:\:getContainer\(\)\-\>get\(FormFactoryInterface\:\:class\)\-\>createForm\(\$name, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_config/src/Model/FormModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 2 + path: components/com_config/src/Model/FormModel.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_config/src/Model/ModulesModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: components/com_config/src/Model/ModulesModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_config/src/Model/TemplatesModel.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Site\\View\\Modules\\HtmlView\:\:\$positions\.$#' + identifier: property.notFound + count: 1 + path: components/com_config/src/View/Modules/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Config\\Site\\View\\Templates\\HtmlView\:\:\$data\.$#' + identifier: property.notFound + count: 1 + path: components/com_config/src/View/Templates/HtmlView.php + + - + message: ''' + #^Access to deprecated property \$document of class Joomla\\CMS\\MVC\\View\\AbstractView\: + 4\.4\.0 will be removed in 6\.0 + Use \$this\-\>getDocument\(\) instead$# + ''' + identifier: property.deprecated + count: 1 + path: components/com_config/src/View/Templates/HtmlView.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 3 + path: components/com_contact/src/Controller/ContactController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_contact/src/Controller/ContactController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_contact/src/Controller/ContactController.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_contact/src/Controller/ContactController.php + + - + message: ''' + #^Parameter \$input of method Joomla\\Component\\Contact\\Site\\Controller\\DisplayController\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: components/com_contact/src/Controller/DisplayController.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_contact/src/Model/CategoriesModel.php + + - + message: ''' + #^Call to deprecated method castAsChar\(\) of class Joomla\\Database\\DatabaseQuery\: + 3\.0 Use \$query\-\>castAs\('CHAR', \$value\)$# + ''' + identifier: method.deprecated + count: 2 + path: components/com_contact/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_contact/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_contact/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Form\\Form\: + 4\.3 will be removed in 6\.0 + Use the FormFactory service from the container + Example\: Factory\:\:getContainer\(\)\-\>get\(FormFactoryInterface\:\:class\)\-\>createForm\(\$name, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_contact/src/Model/ContactModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: components/com_contact/src/Model/ContactModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_contact/src/Model/ContactModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 2 + path: components/com_contact/src/Model/ContactModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_contact/src/Model/FeaturedModel.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: components/com_contact/src/Model/FormModel.php + + - + message: ''' + #^Call to deprecated method getRouter\(\) of class Joomla\\CMS\\Application\\CMSApplication\: + 4\.3 will be removed in 6\.0 + Inject the router or load it from the dependency injection container + Example\: Factory\:\:getContainer\(\)\-\>get\(\$name\);$# + ''' + identifier: method.deprecated + count: 4 + path: components/com_contact/src/Service/Router.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Category\\HtmlView\:\:\$menu\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/src/View/Category/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Category\\HtmlView\:\:\$pathway\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/src/View/Category/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Contact\\HtmlView\:\:\$contactUser\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/src/View/Contact/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_contact/src/View/Contact/HtmlView.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_contact/src/View/Contact/HtmlView.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 5 + path: components/com_contact/src/View/Contact/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_contact/src/View/Contact/VcfView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Featured\\HtmlView\:\:\$category\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/src/View/Featured/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Featured\\HtmlView\:\:\$children\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/src/View/Featured/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Featured\\HtmlView\:\:\$maxLevel\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/src/View/Featured/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Featured\\HtmlView\:\:\$parent\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/src/View/Featured/HtmlView.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\MVC\\View\\AbstractView\: + 5\.3\.0 will be removed in 7\.0\. + Retrieve the model with \$model \= \$this\-\>getModel\(\); and call the methods + to the model directly, e\.g\. \$model\-\>getItems\(\) instead of \$this\-\>get\('Items'\)\.$# + ''' + identifier: method.deprecated + count: 3 + path: components/com_contact/src/View/Featured/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_contact/src/View/Featured/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_contact/src/View/Form/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Categories\\HtmlView\:\:\$maxLevelcat\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/tmpl/categories/default_items.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Category\\HtmlView\:\:\$subtemplatename\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/tmpl/category/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Category\\HtmlView\:\:\$maxLevel\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/tmpl/category/default_children.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Contact\\HtmlView\:\:\$contactUser\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/tmpl/contact/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Contact\\HtmlView\:\:\$contactUser\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/tmpl/contact/default_user_custom_fields.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Form\\HtmlView\:\:\$ignore_fieldsets\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/tmpl/form/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Form\\HtmlView\:\:\$tab_name\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/tmpl/form/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Contact\\Site\\View\\Form\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: components/com_contact/tmpl/form/edit.php + + - + message: '#^Class Joomla\\Component\\Content\\Administrator\\Service\\HTML\\Icon does not have a constructor and must be instantiated without any parameters\.$#' + identifier: new.noConstructor + count: 1 + path: components/com_content/helpers/icon.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_content/src/Controller/ArticleController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_content/src/Controller/ArticleController.php + + - + message: ''' + #^Parameter \$input of method Joomla\\Component\\Content\\Site\\Controller\\DisplayController\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: components/com_content/src/Controller/DisplayController.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_content/src/Helper/AssociationHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_content/src/Helper/AssociationHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: components/com_content/src/Helper/AssociationHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_content/src/Helper/QueryHelper.php + + - + message: ''' + #^Call to deprecated method castAsChar\(\) of class Joomla\\Database\\DatabaseQuery\: + 3\.0 Use \$query\-\>castAs\('CHAR', \$value\)$# + ''' + identifier: method.deprecated + count: 2 + path: components/com_content/src/Model/ArchiveModel.php + + - + message: ''' + #^Call to deprecated method cleanCache\(\) of class Joomla\\Component\\Content\\Site\\Model\\ArticleModel\: + 4\.3 will be removed in 6\.0$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_content/src/Model/ArticleModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_content/src/Model/ArticleModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_content/src/Model/ArticleModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_content/src/Model/ArticleModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_content/src/Model/CategoriesModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_content/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_content/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_content/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: components/com_content/src/Model/FormModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_content/src/Model/FormModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_content/src/Model/FormModel.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: components/com_content/src/Model/FormModel.php + + - + message: ''' + #^Call to deprecated method getRouter\(\) of class Joomla\\CMS\\Application\\CMSApplication\: + 4\.3 will be removed in 6\.0 + Inject the router or load it from the dependency injection container + Example\: Factory\:\:getContainer\(\)\-\>get\(\$name\);$# + ''' + identifier: method.deprecated + count: 4 + path: components/com_content/src/Service/Router.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_content/src/View/Archive/HtmlView.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 4 + path: components/com_content/src/View/Archive/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_content/src/View/Article/HtmlView.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_content/src/View/Article/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Category\\HtmlView\:\:\$menu\.$#' + identifier: property.notFound + count: 1 + path: components/com_content/src/View/Category/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Category\\HtmlView\:\:\$pathway\.$#' + identifier: property.notFound + count: 1 + path: components/com_content/src/View/Category/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Category\\HtmlView\:\:\$vote\.$#' + identifier: property.notFound + count: 1 + path: components/com_content/src/View/Category/HtmlView.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 4 + path: components/com_content/src/View/Category/HtmlView.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_content/src/View/Featured/FeedView.php + + - + message: ''' + #^Access to deprecated property \$db of class Joomla\\Component\\Content\\Site\\View\\Featured\\HtmlView\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement use database from the container instead + Example\: Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: property.deprecated + count: 1 + path: components/com_content/src/View/Featured/HtmlView.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_content/src/View/Featured/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_content/src/View/Featured/HtmlView.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 4 + path: components/com_content/src/View/Featured/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_content/src/View/Form/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Categories\\HtmlView\:\:\$maxLevelcat\.$#' + identifier: property.notFound + count: 1 + path: components/com_content/tmpl/categories/default_items.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Category\\HtmlView\:\:\$item\.$#' + identifier: property.notFound + count: 2 + path: components/com_content/tmpl/category/blog.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Category\\HtmlView\:\:\$maxLevel\.$#' + identifier: property.notFound + count: 1 + path: components/com_content/tmpl/category/blog.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 4 + path: components/com_content/tmpl/category/blog.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Category\\HtmlView\:\:\$maxLevel\.$#' + identifier: property.notFound + count: 1 + path: components/com_content/tmpl/category/blog_children.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Category\\HtmlView\:\:\$item\.$#' + identifier: property.notFound + count: 23 + path: components/com_content/tmpl/category/blog_item.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Category\\HtmlView\:\:\$subtemplatename\.$#' + identifier: property.notFound + count: 1 + path: components/com_content/tmpl/category/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Category\\HtmlView\:\:\$user\.$#' + identifier: property.notFound + count: 1 + path: components/com_content/tmpl/category/default_articles.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Category\\HtmlView\:\:\$vote\.$#' + identifier: property.notFound + count: 4 + path: components/com_content/tmpl/category/default_articles.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Category\\HtmlView\:\:\$maxLevel\.$#' + identifier: property.notFound + count: 3 + path: components/com_content/tmpl/category/default_children.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Featured\\HtmlView\:\:\$item\.$#' + identifier: property.notFound + count: 2 + path: components/com_content/tmpl/featured/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Featured\\HtmlView\:\:\$item\.$#' + identifier: property.notFound + count: 29 + path: components/com_content/tmpl/featured/default_item.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Form\\HtmlView\:\:\$ignore_fieldsets\.$#' + identifier: property.notFound + count: 1 + path: components/com_content/tmpl/form/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Form\\HtmlView\:\:\$tab_name\.$#' + identifier: property.notFound + count: 1 + path: components/com_content/tmpl/form/edit.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Content\\Site\\View\\Form\\HtmlView\:\:\$useCoreUI\.$#' + identifier: property.notFound + count: 1 + path: components/com_content/tmpl/form/edit.php + + - + message: ''' + #^Parameter \$input of method Joomla\\Component\\Contenthistory\\Site\\Controller\\DisplayController\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: components/com_contenthistory/src/Controller/DisplayController.php + + - + message: ''' + #^Parameter \$input of method Joomla\\Component\\Fields\\Site\\Controller\\DisplayController\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: components/com_fields/src/Controller/DisplayController.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_finder/src/Helper/FinderHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_finder/src/Model/SearchModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_finder/src/Model/SearchModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_finder/src/Model/SuggestionsModel.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Finder\\Site\\View\\Search\\HtmlView\:\:\$sortOrderFields\.$#' + identifier: property.notFound + count: 1 + path: components/com_finder/src/View/Search/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_finder/src/View/Search/HtmlView.php + + - + message: '#^Call to protected method getFields\(\) of class Joomla\\Component\\Finder\\Site\\View\\Search\\HtmlView\.$#' + identifier: method.protected + count: 1 + path: components/com_finder/tmpl/search/default_form.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Finder\\Site\\View\\Search\\HtmlView\:\:\$baseUrl\.$#' + identifier: property.notFound + count: 1 + path: components/com_finder/tmpl/search/default_result.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Finder\\Site\\View\\Search\\HtmlView\:\:\$result\.$#' + identifier: property.notFound + count: 10 + path: components/com_finder/tmpl/search/default_result.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Finder\\Site\\View\\Search\\HtmlView\:\:\$baseUrl\.$#' + identifier: property.notFound + count: 1 + path: components/com_finder/tmpl/search/default_results.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Finder\\Site\\View\\Search\\HtmlView\:\:\$result\.$#' + identifier: property.notFound + count: 1 + path: components/com_finder/tmpl/search/default_results.php + + - + message: '#^Call to protected method getLayoutFile\(\) of class Joomla\\Component\\Finder\\Site\\View\\Search\\HtmlView\.$#' + identifier: method.protected + count: 1 + path: components/com_finder/tmpl/search/default_results.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Finder\\Site\\View\\Search\\HtmlView\:\:\$sortOrderFields\.$#' + identifier: property.notFound + count: 1 + path: components/com_finder/tmpl/search/default_sorting.php + + - + message: ''' + #^Parameter \$input of method Joomla\\Component\\Modules\\Site\\Controller\\DisplayController\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: components/com_modules/src/Controller/DisplayController.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_newsfeeds/src/Model/CategoriesModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_newsfeeds/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_newsfeeds/src/Model/CategoryModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_newsfeeds/src/Model/NewsfeedModel.php + + - + message: ''' + #^Call to deprecated method getRouter\(\) of class Joomla\\CMS\\Application\\CMSApplication\: + 4\.3 will be removed in 6\.0 + Inject the router or load it from the dependency injection container + Example\: Factory\:\:getContainer\(\)\-\>get\(\$name\);$# + ''' + identifier: method.deprecated + count: 4 + path: components/com_newsfeeds/src/Service/Router.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Newsfeeds\\Site\\View\\Category\\HtmlView\:\:\$menu\.$#' + identifier: property.notFound + count: 1 + path: components/com_newsfeeds/src/View/Category/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Newsfeeds\\Site\\View\\Category\\HtmlView\:\:\$pathway\.$#' + identifier: property.notFound + count: 1 + path: components/com_newsfeeds/src/View/Category/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Newsfeeds\\Site\\View\\Newsfeed\\HtmlView\:\:\$msg\.$#' + identifier: property.notFound + count: 1 + path: components/com_newsfeeds/src/View/Newsfeed/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Newsfeeds\\Site\\View\\Newsfeed\\HtmlView\:\:\$rssDoc\.$#' + identifier: property.notFound + count: 2 + path: components/com_newsfeeds/src/View/Newsfeed/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_newsfeeds/src/View/Newsfeed/HtmlView.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_newsfeeds/src/View/Newsfeed/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Newsfeeds\\Site\\View\\Categories\\HtmlView\:\:\$maxLevelcat\.$#' + identifier: property.notFound + count: 1 + path: components/com_newsfeeds/tmpl/categories/default_items.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Newsfeeds\\Site\\View\\Category\\HtmlView\:\:\$maxLevel\.$#' + identifier: property.notFound + count: 1 + path: components/com_newsfeeds/tmpl/category/default.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Newsfeeds\\Site\\View\\Category\\HtmlView\:\:\$maxLevel\.$#' + identifier: property.notFound + count: 1 + path: components/com_newsfeeds/tmpl/category/default_children.php + + - + message: '#^Access to an undefined property Joomla\\Component\\Newsfeeds\\Site\\View\\Newsfeed\\HtmlView\:\:\$rssDoc\.$#' + identifier: property.notFound + count: 4 + path: components/com_newsfeeds/tmpl/newsfeed/default.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 3 + path: components/com_privacy/src/Controller/RequestController.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 5 + path: components/com_privacy/src/Model/ConfirmModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 4 + path: components/com_privacy/src/Model/RemindModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_privacy/src/Model/RequestModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 7 + path: components/com_privacy/src/Model/RequestModel.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_privacy/src/View/Confirm/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_privacy/src/View/Remind/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_privacy/src/View/Request/HtmlView.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Menu\\AbstractMenu\: + 4\.3 will be removed in 6\.0 + Use the MenuFactoryInterface from the container instead + Example\: Factory\:\:getContainer\(\)\-\>get\(MenuFactoryInterface\:\:class\)\-\>createMenu\(\$client, \$options\)$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_tags/src/Helper/RouteHelper.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_tags/src/Helper/RouteHelper.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_tags/src/Model/TagModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_tags/src/Model/TagModel.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: components/com_tags/src/Model/TagModel.php + + - + message: ''' + #^Access to deprecated property \$sefparams of class Joomla\\Component\\Tags\\Site\\Service\\Router\: + 5\.2\.0 will be removed in 6\.0 + without replacement$# + ''' + identifier: property.deprecated + count: 3 + path: components/com_tags/src/Service/Router.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\MVC\\View\\AbstractView\: + 5\.3\.0 will be removed in 7\.0\. + Retrieve the model with \$model \= \$this\-\>getModel\(\); and call the methods + to the model directly, e\.g\. \$model\-\>getItems\(\) instead of \$this\-\>get\('Items'\)\.$# + ''' + identifier: method.deprecated + count: 2 + path: components/com_tags/src/View/Tag/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_tags/src/View/Tag/HtmlView.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 4 + path: components/com_tags/src/View/Tag/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_tags/src/View/Tags/HtmlView.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: components/com_users/src/Controller/ProfileController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_users/src/Controller/ProfileController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 3 + path: components/com_users/src/Controller/RegistrationController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_users/src/Controller/RegistrationController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_users/src/Controller/RemindController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 3 + path: components/com_users/src/Controller/ResetController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_users/src/Controller/UserController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\User\\User\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: components/com_users/src/Model/ProfileModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: components/com_users/src/Model/ProfileModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\User\\User\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 3 + path: components/com_users/src/Model/RegistrationModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_users/src/Model/RegistrationModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\User\\User\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 3 + path: components/com_users/src/Model/RegistrationModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 14 + path: components/com_users/src/Model/RegistrationModel.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_users/src/Model/RegistrationModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 5 + path: components/com_users/src/Model/RemindModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\User\\User\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 3 + path: components/com_users/src/Model/ResetModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\User\\User\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_users/src/Model/ResetModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 15 + path: components/com_users/src/Model/ResetModel.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_users/src/View/Login/HtmlView.php + + - + message: ''' + #^Access to deprecated property \$db of class Joomla\\Component\\Users\\Site\\View\\Profile\\HtmlView\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement use database from the container instead + Example\: Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: property.deprecated + count: 1 + path: components/com_users/src/View/Profile/HtmlView.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: components/com_users/src/View/Profile/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_users/src/View/Profile/HtmlView.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_users/src/View/Profile/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_users/src/View/Registration/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_users/src/View/Remind/HtmlView.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: components/com_users/src/View/Reset/HtmlView.php + + - + message: '#^Access to property \$allowEntryBatching on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: components/com_users/tmpl/captive/select.php + + - + message: '#^Access to property \$mfaMethods on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 3 + path: components/com_users/tmpl/captive/select.php + + - + message: '#^Access to property \$records on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/captive/select.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: components/com_users/tmpl/captive/select.php + + - + message: '#^Call to method getModel\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: components/com_users/tmpl/captive/select.php + + - + message: '#^Access to property \$backupCodes on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 5 + path: components/com_users/tmpl/method/backupcodes.php + + - + message: '#^Access to property \$record on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/method/backupcodes.php + + - + message: '#^Access to property \$returnURL on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 4 + path: components/com_users/tmpl/method/backupcodes.php + + - + message: '#^Access to property \$user on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: components/com_users/tmpl/method/backupcodes.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/method/backupcodes.php + + - + message: '#^Access to property \$isEditExisting on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/method/edit.php + + - + message: '#^Access to property \$record on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 4 + path: components/com_users/tmpl/method/edit.php + + - + message: '#^Access to property \$renderOptions on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 26 + path: components/com_users/tmpl/method/edit.php + + - + message: '#^Access to property \$returnURL on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 4 + path: components/com_users/tmpl/method/edit.php + + - + message: '#^Access to property \$title on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: components/com_users/tmpl/method/edit.php + + - + message: '#^Access to property \$user on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: components/com_users/tmpl/method/edit.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 8 + path: components/com_users/tmpl/method/edit.php + + - + message: '#^Call to method getModel\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/method/edit.php + + - + message: '#^Access to property \$isMandatoryMFASetup on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/default.php + + - + message: '#^Access to property \$methods on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/default.php + + - + message: '#^Access to property \$mfaActive on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: components/com_users/tmpl/methods/default.php + + - + message: '#^Access to property \$returnURL on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: components/com_users/tmpl/methods/default.php + + - + message: '#^Access to property \$user on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/default.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/default.php + + - + message: '#^Call to method get\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/default.php + + - + message: '#^Call to method loadTemplate\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/default.php + + - + message: '#^Call to method setLayout\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/default.php + + - + message: '#^Access to property \$isAdmin on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/firsttime.php + + - + message: '#^Access to property \$returnURL on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: components/com_users/tmpl/methods/firsttime.php + + - + message: '#^Access to property \$user on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/firsttime.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/firsttime.php + + - + message: '#^Call to method loadTemplate\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/firsttime.php + + - + message: '#^Call to method setLayout\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/firsttime.php + + - + message: '#^Access to property \$defaultMethod on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 2 + path: components/com_users/tmpl/methods/list.php + + - + message: '#^Access to property \$methods on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/list.php + + - + message: '#^Access to property \$returnURL on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 8 + path: components/com_users/tmpl/methods/list.php + + - + message: '#^Access to property \$user on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 6 + path: components/com_users/tmpl/methods/list.php + + - + message: '#^Call to method escape\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 13 + path: components/com_users/tmpl/methods/list.php + + - + message: '#^Call to method getDocument\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/list.php + + - + message: '#^Call to method getModel\(\) on an unknown class HtmlView\.$#' + identifier: class.notFound + count: 1 + path: components/com_users/tmpl/methods/list.php + + - + message: ''' + #^Access to deprecated static property \$config of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the configuration object within the application + Example\: + Factory\:\:getApplication\(\)\-\>getConfig\(\);$# + ''' + identifier: staticProperty.deprecated + count: 1 + path: installation/src/Application/CliInstallationApplication.php + + - + message: ''' + #^Access to deprecated static property \$language of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticProperty.deprecated + count: 1 + path: installation/src/Application/CliInstallationApplication.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Application/CliInstallationApplication.php + + - + message: ''' + #^Access to deprecated static property \$config of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the configuration object within the application + Example\: + Factory\:\:getApplication\(\)\-\>getConfig\(\);$# + ''' + identifier: staticProperty.deprecated + count: 1 + path: installation/src/Application/InstallationApplication.php + + - + message: ''' + #^Access to deprecated static property \$document of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticProperty.deprecated + count: 2 + path: installation/src/Application/InstallationApplication.php + + - + message: ''' + #^Access to deprecated static property \$language of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticProperty.deprecated + count: 1 + path: installation/src/Application/InstallationApplication.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Application/InstallationApplication.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Application/InstallationApplication.php + + - + message: ''' + #^Parameter \$input of method Joomla\\CMS\\Installation\\Application\\InstallationApplication\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: installation/src/Application/InstallationApplication.php + + - + message: ''' + #^Parameter \$input of method Joomla\\CMS\\Installation\\Controller\\InstallationController\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: installation/src/Controller/InstallationController.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Controller/JSONController.php + + - + message: ''' + #^Access to deprecated static property \$language of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticProperty.deprecated + count: 1 + path: installation/src/Controller/LanguageController.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Language\\Language\: + 4\.3 will be removed in 6\.0 + Use the language factory instead + Example\: Factory\:\:getContainer\(\)\-\>get\(LanguageFactoryInterface\:\:class\)\-\>createLanguage\(\$lang, \$debug\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Controller/LanguageController.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Form/Field/Installation/LanguageField.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Form/Field/Installation/PrefixField.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\Database\\DatabaseDriver\: + 3\.0 Use DatabaseFactory\:\:getDriver\(\) instead$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Helper/DatabaseHelper.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 9 + path: installation/src/Helper/DatabaseHelper.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Model/BaseInstallationModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Form\\Form\: + 4\.3 will be removed in 6\.0 + Use the FormFactory service from the container + Example\: Factory\:\:getContainer\(\)\-\>get\(FormFactoryInterface\:\:class\)\-\>createForm\(\$name, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Model/ChecksModel.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: installation/src/Model/ConfigurationModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\Database\\DatabaseDriver\: + 3\.0 Use DatabaseFactory\:\:getDriver\(\) instead$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Model/DatabaseModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Model/DatabaseModel.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Model/DatabaseModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Form\\Form\: + 4\.3 will be removed in 6\.0 + Use the FormFactory service from the container + Example\: Factory\:\:getContainer\(\)\-\>get\(FormFactoryInterface\:\:class\)\-\>createForm\(\$name, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Model/LanguagesModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: installation/src/Model/LanguagesModel.php + + - + message: '#^Instantiated class JConfig not found\.$#' + identifier: class.notFound + count: 1 + path: installation/src/Model/LanguagesModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Form\\Form\: + 4\.3 will be removed in 6\.0 + Use the FormFactory service from the container + Example\: Factory\:\:getContainer\(\)\-\>get\(FormFactoryInterface\:\:class\)\-\>createForm\(\$name, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Model/SetupModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: installation/src/Model/SetupModel.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Model/SetupModel.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/src/Response/JsonResponse.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: installation/src/Service/Provider/Application.php + + - + message: '#^Access to protected property Joomla\\CMS\\Document\\ErrorDocument\:\:\$_error\.$#' + identifier: property.protected + count: 3 + path: installation/template/error.php + + - + message: '#^Access to protected property Joomla\\CMS\\Installation\\View\\Preinstall\\HtmlView\:\:\$options\.$#' + identifier: property.protected + count: 1 + path: installation/tmpl/preinstall/default.php + + - + message: '#^Access to protected property Joomla\\CMS\\Installation\\View\\Remove\\HtmlView\:\:\$development\.$#' + identifier: property.protected + count: 3 + path: installation/tmpl/remove/default.php + + - + message: '#^Access to protected property Joomla\\CMS\\Installation\\View\\Remove\\HtmlView\:\:\$installed_languages\.$#' + identifier: property.protected + count: 3 + path: installation/tmpl/remove/default.php + + - + message: '#^Access to protected property Joomla\\CMS\\Installation\\View\\Remove\\HtmlView\:\:\$items\.$#' + identifier: property.protected + count: 2 + path: installation/tmpl/remove/default.php + + - + message: '#^Access to protected property Joomla\\CMS\\Installation\\View\\Remove\\HtmlView\:\:\$phpsettings\.$#' + identifier: property.protected + count: 2 + path: installation/tmpl/remove/default.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/tmpl/remove/default.php + + - + message: '#^Access to protected property Joomla\\CMS\\Installation\\View\\Setup\\HtmlView\:\:\$form\.$#' + identifier: property.protected + count: 19 + path: installation/tmpl/setup/default.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: installation/tmpl/setup/default.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 10 + path: libraries/src/Access/Access.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\User\\User\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or via \$app\-\>getIdentity\(\) + Example\: Factory\:\:getContainer\(\)\-\>get\(UserFactoryInterface\:\:class\)\-\>loadUserById\(\$id\)$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Access/Access.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Access/Rules.php + + - + message: ''' + #^Return type of method Joomla\\CMS\\Access\\Rules\:\:getAllowed\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: return.deprecatedClass + count: 1 + path: libraries/src/Access/Rules.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Application/AdministratorApplication.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Application/AdministratorApplication.php + + - + message: ''' + #^Call to deprecated method route\(\) of class Joomla\\CMS\\Application\\AdministratorApplication\: + 4\.0 will be removed in 6\.0 + Implement the route functionality in the extending class, this here will be removed without replacement$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Application/AdministratorApplication.php + + - + message: ''' + #^Parameter \$input of method Joomla\\CMS\\Application\\AdministratorApplication\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: libraries/src/Application/AdministratorApplication.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Application/ApiApplication.php + + - + message: ''' + #^Call to deprecated method route\(\) of class Joomla\\CMS\\Application\\ApiApplication\: + 4\.0 will be removed in 6\.0 + Implement the route functionality in the extending class, this here will be removed without replacement$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Application/ApiApplication.php + + - + message: '#^Property Joomla\\CMS\\Application\\BaseApplication\:\:\$input is not writable\.$#' + identifier: assign.propertyReadOnly + count: 1 + path: libraries/src/Application/BaseApplication.php + + - + message: ''' + #^Class Joomla\\CMS\\Application\\CLI\\Output\\Stdout extends deprecated class Joomla\\CMS\\Application\\CLI\\CliOutput\: + 4\.3 will be removed in 6\.0 + Use the `joomla/console` package instead$# + ''' + identifier: class.extendsDeprecatedClass + count: 1 + path: libraries/src/Application/CLI/Output/Stdout.php + + - + message: ''' + #^Class Joomla\\CMS\\Application\\CLI\\Output\\Xml extends deprecated class Joomla\\CMS\\Application\\CLI\\CliOutput\: + 4\.3 will be removed in 6\.0 + Use the `joomla/console` package instead$# + ''' + identifier: class.extendsDeprecatedClass + count: 1 + path: libraries/src/Application/CLI/Output/Xml.php + + - + message: ''' + #^Access to deprecated static property \$instances of class Joomla\\CMS\\Menu\\AbstractMenu\: + 4\.3 will be removed in 6\.0 + Use the MenuFactoryInterface from the container instead + Example\: Factory\:\:getContainer\(\)\-\>get\(MenuFactoryInterface\:\:class\)\-\>createMenu\(\$client, \$options\)$# + ''' + identifier: staticProperty.deprecated + count: 1 + path: libraries/src/Application/CMSApplication.php + + - + message: ''' + #^Access to deprecated static property \$language of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticProperty.deprecated + count: 1 + path: libraries/src/Application/CMSApplication.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: libraries/src/Application/CMSApplication.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Application/CMSApplication.php + + - + message: ''' + #^Parameter \$input of method Joomla\\CMS\\Application\\CMSApplication\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: libraries/src/Application/CMSApplication.php + + - + message: ''' + #^Interface Joomla\\CMS\\Application\\CMSApplicationInterface extends deprecated interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.3 will be removed in 6\.0 + This interface will be removed without replacement as the Joomla 3\.x compatibility layer will be removed$# + ''' + identifier: interface.extendsDeprecatedInterface + count: 1 + path: libraries/src/Application/CMSApplicationInterface.php + + - + message: '#^Call to an undefined method Joomla\\CMS\\Application\\ConsoleApplication\:\:setUserState\(\)\.$#' + identifier: method.notFound + count: 1 + path: libraries/src/Application/ConsoleApplication.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Application/ConsoleApplication.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Input\\Cli\: + 4\.3 will be removed in 6\.0 + Use the `joomla/console` package instead$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Application/ConsoleApplication.php + + - + message: ''' + #^Call to method __construct\(\) of deprecated class Joomla\\CMS\\Application\\CliApplication\: + 4\.0 will be removed in 6\.0 + Use the ConsoleApplication instead$# + ''' + identifier: staticMethod.deprecatedClass + count: 1 + path: libraries/src/Application/DaemonApplication.php + + - + message: ''' + #^Class Joomla\\CMS\\Application\\DaemonApplication extends deprecated class Joomla\\CMS\\Application\\CliApplication\: + 4\.0 will be removed in 6\.0 + Use the ConsoleApplication instead$# + ''' + identifier: class.extendsDeprecatedClass + count: 1 + path: libraries/src/Application/DaemonApplication.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Application\\CliApplication\: + 4\.0 will be removed in 6\.0 + Use the ConsoleApplication instead$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: libraries/src/Application/DaemonApplication.php + + - + message: ''' + #^Parameter \$input of method Joomla\\CMS\\Application\\DaemonApplication\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Cli\: + 4\.3 will be removed in 6\.0 + Use the `joomla/console` package instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: libraries/src/Application/DaemonApplication.php + + - + message: '#^Use of constant FILTER_SANITIZE_STRING is deprecated\.$#' + identifier: constant.deprecated + count: 1 + path: libraries/src/Application/DaemonApplication.php + + - + message: ''' + #^Access to deprecated static property \$document of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticProperty.deprecated + count: 1 + path: libraries/src/Application/SiteApplication.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: libraries/src/Application/SiteApplication.php + + - + message: ''' + #^Call to deprecated method route\(\) of class Joomla\\CMS\\Application\\SiteApplication\: + 4\.0 will be removed in 6\.0 + Implement the route functionality in the extending class, this here will be removed without replacement$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Application/SiteApplication.php + + - + message: ''' + #^Parameter \$input of method Joomla\\CMS\\Application\\SiteApplication\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: libraries/src/Application/SiteApplication.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Application/WebApplication.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Application/WebApplication.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Application/WebApplication.php + + - + message: ''' + #^Parameter \$input of method Joomla\\CMS\\Application\\WebApplication\:\:__construct\(\) has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: libraries/src/Application/WebApplication.php + + - + message: '#^Call to an undefined method Joomla\\CMS\\Association\\AssociationExtensionHelper\:\:getAssociations\(\)\.$#' + identifier: method.notFound + count: 1 + path: libraries/src/Association/AssociationExtensionHelper.php + + - + message: '#^Call to an undefined method Joomla\\CMS\\Association\\AssociationExtensionHelper\:\:getItem\(\)\.$#' + identifier: method.notFound + count: 1 + path: libraries/src/Association/AssociationExtensionHelper.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Authentication/Authentication.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Button/FeaturedButton.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Button/PublishedButton.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Button/PublishedButton.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Cache/Cache.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Cache/CacheStorage.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Cache/Controller/CallbackController.php + + - + message: ''' + #^Call to deprecated method _load\(\) of class Joomla\\CMS\\Captcha\\Captcha\: + Should use CaptchaRegistry$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Captcha/Captcha.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: libraries/src/Categories/Categories.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Categories/Categories.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Categories/CategoryNode.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Categories/CategoryNode.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyErrorHandlingTrait in class Joomla\\CMS\\Categories\\CategoryNode\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of setError$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Categories/CategoryNode.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyPropertyManagementTrait in class Joomla\\CMS\\Categories\\CategoryNode\: + 4\.3\.0 will be removed in 6\.0 + Will be removed without replacement + Create proper setter functions for the individual properties or use a \\Joomla\\Registry\\Registry$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Categories/CategoryNode.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyErrorHandlingTrait in class Joomla\\CMS\\Changelog\\Changelog\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of setError$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Changelog/Changelog.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyPropertyManagementTrait in class Joomla\\CMS\\Changelog\\Changelog\: + 4\.3\.0 will be removed in 6\.0 + Will be removed without replacement + Create proper setter functions for the individual properties or use a \\Joomla\\Registry\\Registry$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Changelog/Changelog.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: libraries/src/Client/ClientHelper.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Client/FtpClient.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Component/ComponentHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Component/ComponentHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Component/ComponentHelper.php + + - + message: ''' + #^Access to deprecated property \$sefparams of class Joomla\\CMS\\Component\\Router\\Rules\\MenuRules\: + 5\.2\.0 will be removed in 6\.0 + without replacement$# + ''' + identifier: property.deprecated + count: 3 + path: libraries/src/Component/Router/Rules/MenuRules.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\User\\User\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Console/AddUserCommand.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\User\\User\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or via \$app\-\>getIdentity\(\) + Example\: Factory\:\:getContainer\(\)\-\>get\(UserFactoryInterface\:\:class\)\-\>loadUserById\(\$id\)$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Console/AddUserCommand.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\User\\User\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or via \$app\-\>getIdentity\(\) + Example\: Factory\:\:getContainer\(\)\-\>get\(UserFactoryInterface\:\:class\)\-\>loadUserById\(\$id\)$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Console/AddUserToGroupCommand.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\User\\User\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Console/ChangeUserPasswordCommand.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\User\\User\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or via \$app\-\>getIdentity\(\) + Example\: Factory\:\:getContainer\(\)\-\>get\(UserFactoryInterface\:\:class\)\-\>loadUserById\(\$id\)$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Console/ChangeUserPasswordCommand.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Console/CoreUpdateChannelCommand.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\User\\User\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or via \$app\-\>getIdentity\(\) + Example\: Factory\:\:getContainer\(\)\-\>get\(UserFactoryInterface\:\:class\)\-\>loadUserById\(\$id\)$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Console/DeleteUserCommand.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Console/ExtensionRemoveCommand.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Console/FinderIndexCommand.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Console/FinderIndexCommand.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Console/RemoveOldFilesCommand.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\User\\User\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or via \$app\-\>getIdentity\(\) + Example\: Factory\:\:getContainer\(\)\-\>get\(UserFactoryInterface\:\:class\)\-\>loadUserById\(\$id\)$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Console/RemoveUserFromGroupCommand.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\Database\\DatabaseDriver\: + 3\.0 Use DatabaseFactory\:\:getDriver\(\) instead$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Console/SetConfigurationCommand.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Console/SetConfigurationCommand.php + + - + message: '#^Instantiated class JConfig not found\.$#' + identifier: class.notFound + count: 1 + path: libraries/src/Console/SetConfigurationCommand.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Console/UpdateCoreCommand.php + + - + message: ''' + #^Access to deprecated static property \$gmt of class Joomla\\CMS\\Date\\Date\: + 4\.0 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: staticProperty.deprecated + count: 2 + path: libraries/src/Date/Date.php + + - + message: ''' + #^Access to deprecated static property \$stz of class Joomla\\CMS\\Date\\Date\: + 4\.0 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: staticProperty.deprecated + count: 2 + path: libraries/src/Date/Date.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Date/Date.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Date/Date.php + + - + message: ''' + #^Access to deprecated property \$_scripts of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Document/Document.php + + - + message: ''' + #^Access to deprecated property \$_styleSheets of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Document/Document.php + + - + message: ''' + #^Access to deprecated property \$_styleSheets of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Document/FeedDocument.php + + - + message: ''' + #^Access to deprecated property \$_script of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager$# + ''' + identifier: property.deprecated + count: 5 + path: libraries/src/Document/HtmlDocument.php + + - + message: ''' + #^Access to deprecated property \$_scripts of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager$# + ''' + identifier: property.deprecated + count: 7 + path: libraries/src/Document/HtmlDocument.php + + - + message: ''' + #^Access to deprecated property \$_style of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager$# + ''' + identifier: property.deprecated + count: 5 + path: libraries/src/Document/HtmlDocument.php + + - + message: ''' + #^Access to deprecated property \$_styleSheets of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager$# + ''' + identifier: property.deprecated + count: 7 + path: libraries/src/Document/HtmlDocument.php + + - + message: ''' + #^Call to deprecated method addScriptDeclaration\(\) of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager + Example\: \$wa\-\>addInlineScript\(\.\.\.\);$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Document/HtmlDocument.php + + - + message: ''' + #^Call to deprecated method addStyleDeclaration\(\) of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager + Example\: \$wa\-\>addInlineStyle\(\.\.\.\);$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Document/HtmlDocument.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Document/HtmlDocument.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Document/Renderer/Html/ModulesRenderer.php + + - + message: ''' + #^Access to deprecated property \$_script of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Document/Renderer/Html/ScriptsRenderer.php + + - + message: ''' + #^Access to deprecated property \$_scripts of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Document/Renderer/Html/ScriptsRenderer.php + + - + message: ''' + #^Access to deprecated property \$_style of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Document/Renderer/Html/StylesRenderer.php + + - + message: ''' + #^Access to deprecated property \$_styleSheets of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Document/Renderer/Html/StylesRenderer.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Object\\CMSObject\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Editor/Button/ButtonsRegistry.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Editor/Editor.php + + - + message: '#^Function mcrypt_decrypt not found\.$#' + identifier: function.notFound + count: 1 + path: libraries/src/Encrypt/AES/Mcrypt.php + + - + message: '#^Function mcrypt_encrypt not found\.$#' + identifier: function.notFound + count: 1 + path: libraries/src/Encrypt/AES/Mcrypt.php + + - + message: '#^Function mcrypt_get_iv_size not found\.$#' + identifier: function.notFound + count: 1 + path: libraries/src/Encrypt/AES/Mcrypt.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Encrypt\\AES\\Mcrypt\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Encrypt/Aes.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Environment/Browser.php + + - + message: ''' + #^Access to deprecated static property \$language of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticProperty.deprecated + count: 1 + path: libraries/src/Error/AbstractRenderer.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Error/AbstractRenderer.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Application\\BeforeSaveConfigurationEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Application/BeforeSaveConfigurationEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Cache\\AfterPurgeEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Cache/AfterPurgeEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Cache\\AfterPurgeEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Cache/AfterPurgeEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Checkin\\AfterCheckinEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Checkin/AfterCheckinEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Checkin\\AfterCheckinEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Checkin/AfterCheckinEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Contact\\SubmitContactEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Contact/SubmitContactEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Contact\\SubmitContactEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Contact/SubmitContactEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Contact\\ValidateContactEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Contact/ValidateContactEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Contact\\ValidateContactEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Contact/ValidateContactEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Contact\\ValidateContactEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Contact/ValidateContactEvent.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\Content\\AfterDisplayEvent\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/Content/AfterDisplayEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Content\\AfterDisplayEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Content/AfterDisplayEvent.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\Content\\AfterTitleEvent\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/Content/AfterTitleEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Content\\AfterTitleEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Content/AfterTitleEvent.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\Content\\BeforeDisplayEvent\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/Content/BeforeDisplayEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Content\\BeforeDisplayEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Content/BeforeDisplayEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Content\\ContentEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Content/ContentEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Content\\ContentEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Content/ContentEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\CustomFields\\CustomFieldsEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/CustomFields/CustomFieldsEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\CustomFields\\CustomFieldsEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/CustomFields/CustomFieldsEvent.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\CustomFields\\GetTypesEvent\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/CustomFields/GetTypesEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\CustomFields\\GetTypesEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/CustomFields/GetTypesEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\CustomFields\\PrepareFieldEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/CustomFields/PrepareFieldEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Extension\\AbstractExtensionEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Extension/AbstractExtensionEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Extension\\AbstractExtensionEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Extension/AbstractExtensionEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Extension\\AbstractJoomlaUpdateEvent\: + 5\.2\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Extension/AbstractJoomlaUpdateEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Extension\\AbstractJoomlaUpdateEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Extension/AbstractJoomlaUpdateEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Finder\\AbstractFinderEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Finder/AbstractFinderEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Finder\\AbstractFinderEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Finder/AbstractFinderEvent.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\Installer\\AddInstallationTabEvent\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/Installer/AddInstallationTabEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Installer\\AddInstallationTabEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Installer/AddInstallationTabEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Installer\\BeforeInstallationEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Installer/BeforeInstallationEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Installer\\BeforeInstallerEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Installer/BeforeInstallerEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Installer\\BeforePackageDownloadEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Installer/BeforePackageDownloadEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Installer\\BeforePackageDownloadEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Installer/BeforePackageDownloadEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Installer\\InstallerEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Installer/InstallerEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Installer\\InstallerEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Installer/InstallerEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Mail\\MailTemplateEvent\: + 5\.2\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Mail/MailTemplateEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Mail\\MailTemplateEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Mail/MailTemplateEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Menu\\AfterGetMenuTypeOptionsEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Menu/AfterGetMenuTypeOptionsEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Menu\\AfterGetMenuTypeOptionsEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Menu/AfterGetMenuTypeOptionsEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Menu\\BeforeRenderMenuItemsViewEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Menu/BeforeRenderMenuItemsViewEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Menu\\BeforeRenderMenuItemsViewEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Menu/BeforeRenderMenuItemsViewEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Menu\\PreprocessMenuItemsEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Menu/PreprocessMenuItemsEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Menu\\PreprocessMenuItemsEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Menu/PreprocessMenuItemsEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Model\\AfterChangeStateEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Model/AfterChangeStateEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Model\\AfterCleanCacheEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Model/AfterCleanCacheEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Model\\AfterCleanCacheEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Model/AfterCleanCacheEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Model\\BeforeChangeStateEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Model/BeforeChangeStateEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Model\\BeforeDeleteEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Model/BeforeDeleteEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Model\\BeforeSaveEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Model/BeforeSaveEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Model\\FormEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Model/FormEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Model\\FormEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Model/FormEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Model\\ModelEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Model/ModelEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Model\\ModelEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Model/ModelEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Module\\ModuleEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Module/ModuleEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Module\\ModuleEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Module/ModuleEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\MultiFactor\\BeforeDisplayMethods\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/BeforeDisplayMethods.php + + - + message: ''' + #^Call to deprecated method setUser\(\) of class Joomla\\CMS\\Event\\MultiFactor\\BeforeDisplayMethods\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/BeforeDisplayMethods.php + + - + message: ''' + #^Call to deprecated method setMethod\(\) of class Joomla\\CMS\\Event\\MultiFactor\\Callback\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/Callback.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\MultiFactor\\Captive\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/Captive.php + + - + message: ''' + #^Call to deprecated method setRecord\(\) of class Joomla\\CMS\\Event\\MultiFactor\\Captive\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/Captive.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\MultiFactor\\Captive\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/Captive.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\MultiFactor\\GetMethod\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/GetMethod.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\MultiFactor\\GetMethod\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/GetMethod.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\MultiFactor\\GetSetup\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/GetSetup.php + + - + message: ''' + #^Call to deprecated method setRecord\(\) of class Joomla\\CMS\\Event\\MultiFactor\\GetSetup\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/GetSetup.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\MultiFactor\\GetSetup\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/GetSetup.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\MultiFactor\\SaveSetup\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/SaveSetup.php + + - + message: ''' + #^Call to deprecated method setInput\(\) of class Joomla\\CMS\\Event\\MultiFactor\\SaveSetup\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/SaveSetup.php + + - + message: ''' + #^Call to deprecated method setRecord\(\) of class Joomla\\CMS\\Event\\MultiFactor\\SaveSetup\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/SaveSetup.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\MultiFactor\\SaveSetup\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/SaveSetup.php + + - + message: ''' + #^Call to deprecated method setCode\(\) of class Joomla\\CMS\\Event\\MultiFactor\\Validate\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/Validate.php + + - + message: ''' + #^Call to deprecated method setRecord\(\) of class Joomla\\CMS\\Event\\MultiFactor\\Validate\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/Validate.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\MultiFactor\\Validate\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/Validate.php + + - + message: ''' + #^Call to deprecated method setUser\(\) of class Joomla\\CMS\\Event\\MultiFactor\\Validate\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/MultiFactor/Validate.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\PageCache\\GetKeyEvent\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/PageCache/GetKeyEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\PageCache\\GetKeyEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/PageCache/GetKeyEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\PageCache\\IsExcludedEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/PageCache/IsExcludedEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\PageCache\\SetCachingEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/PageCache/SetCachingEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Plugin\\System\\Stats\\GetStatsDataEvent\: + 5\.3\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Plugin/System/Stats/GetStatsDataEvent.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\Plugin\\System\\Stats\\GetStatsDataEvent\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/Plugin/System/Stats/GetStatsDataEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Plugin\\System\\Stats\\GetStatsDataEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Plugin/System/Stats/GetStatsDataEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Plugin\\System\\Stats\\GetStatsDataEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Plugin/System/Stats/GetStatsDataEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Plugin\\System\\Webauthn\\AjaxChallenge\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Plugin/System/Webauthn/AjaxChallenge.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\Plugin\\System\\Webauthn\\AjaxCreate\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/Plugin/System/Webauthn/AjaxCreate.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Plugin\\System\\Webauthn\\AjaxCreate\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Plugin/System/Webauthn/AjaxCreate.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Plugin\\System\\Webauthn\\AjaxDelete\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Plugin/System/Webauthn/AjaxDelete.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\Plugin\\System\\Webauthn\\AjaxInitCreate\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/Plugin/System/Webauthn/AjaxInitCreate.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Plugin\\System\\Webauthn\\AjaxInitCreate\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Plugin/System/Webauthn/AjaxInitCreate.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Plugin\\System\\Webauthn\\AjaxSaveLabel\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Plugin/System/Webauthn/AjaxSaveLabel.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Privacy\\CanRemoveDataEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Privacy/CanRemoveDataEvent.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\Privacy\\CollectCapabilitiesEvent\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/Privacy/CollectCapabilitiesEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Privacy\\CollectCapabilitiesEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Privacy/CollectCapabilitiesEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Privacy\\ExportRequestEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Privacy/ExportRequestEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\Privacy\\PrivacyEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/Privacy/PrivacyEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\Privacy\\PrivacyEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/Privacy/PrivacyEvent.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\QuickIcon\\GetIconEvent\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/QuickIcon/GetIconEvent.php + + - + message: ''' + #^Call to deprecated method setContext\(\) of class Joomla\\CMS\\Event\\QuickIcon\\GetIconEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/QuickIcon/GetIconEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\QuickIcon\\GetIconEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/QuickIcon/GetIconEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\QuickIcon\\GetIconEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/QuickIcon/GetIconEvent.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\SampleData\\GetOverviewEvent\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/SampleData/GetOverviewEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\SampleData\\GetOverviewEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/SampleData/GetOverviewEvent.php + + - + message: ''' + #^Call to deprecated method setSubject\(\) of class Joomla\\CMS\\Event\\Table\\AbstractEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/AbstractEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Table\\AfterLoadEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/AfterLoadEvent.php + + - + message: ''' + #^Call to deprecated method setRow\(\) of class Joomla\\CMS\\Event\\Table\\AfterLoadEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/AfterLoadEvent.php + + - + message: ''' + #^Call to deprecated method setDelta\(\) of class Joomla\\CMS\\Event\\Table\\AfterMoveEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/AfterMoveEvent.php + + - + message: ''' + #^Call to deprecated method setRow\(\) of class Joomla\\CMS\\Event\\Table\\AfterMoveEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/AfterMoveEvent.php + + - + message: ''' + #^Call to deprecated method setWhere\(\) of class Joomla\\CMS\\Event\\Table\\AfterMoveEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/AfterMoveEvent.php + + - + message: ''' + #^Call to deprecated method setWhere\(\) of class Joomla\\CMS\\Event\\Table\\AfterReorderEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/AfterReorderEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\Table\\AfterStoreEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/AfterStoreEvent.php + + - + message: ''' + #^Call to deprecated method setIgnore\(\) of class Joomla\\CMS\\Event\\Table\\BeforeBindEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforeBindEvent.php + + - + message: ''' + #^Call to deprecated method setSrc\(\) of class Joomla\\CMS\\Event\\Table\\BeforeBindEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforeBindEvent.php + + - + message: ''' + #^Call to deprecated method setUserId\(\) of class Joomla\\CMS\\Event\\Table\\BeforeCheckoutEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforeCheckoutEvent.php + + - + message: ''' + #^Call to deprecated method setReset\(\) of class Joomla\\CMS\\Event\\Table\\BeforeLoadEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforeLoadEvent.php + + - + message: ''' + #^Call to deprecated method setDelta\(\) of class Joomla\\CMS\\Event\\Table\\BeforeMoveEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforeMoveEvent.php + + - + message: ''' + #^Call to deprecated method setQuery\(\) of class Joomla\\CMS\\Event\\Table\\BeforeMoveEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforeMoveEvent.php + + - + message: ''' + #^Call to deprecated method setWhere\(\) of class Joomla\\CMS\\Event\\Table\\BeforeMoveEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforeMoveEvent.php + + - + message: ''' + #^Call to deprecated method setQuery\(\) of class Joomla\\CMS\\Event\\Table\\BeforePublishEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforePublishEvent.php + + - + message: ''' + #^Call to deprecated method setState\(\) of class Joomla\\CMS\\Event\\Table\\BeforePublishEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforePublishEvent.php + + - + message: ''' + #^Call to deprecated method setUserId\(\) of class Joomla\\CMS\\Event\\Table\\BeforePublishEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforePublishEvent.php + + - + message: ''' + #^Call to deprecated method setQuery\(\) of class Joomla\\CMS\\Event\\Table\\BeforeReorderEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforeReorderEvent.php + + - + message: ''' + #^Call to deprecated method setWhere\(\) of class Joomla\\CMS\\Event\\Table\\BeforeReorderEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforeReorderEvent.php + + - + message: ''' + #^Call to deprecated method setUpdateNulls\(\) of class Joomla\\CMS\\Event\\Table\\BeforeStoreEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/BeforeStoreEvent.php + + - + message: ''' + #^Call to deprecated method setReplaceTags\(\) of class Joomla\\CMS\\Event\\Table\\SetNewTagsEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/Table/SetNewTagsEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\User\\AuthorisationEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/User/AuthorisationEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\User\\BeforeSaveEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/User/BeforeSaveEvent.php + + - + message: ''' + #^Access to deprecated property \$resultIsFalseable of class Joomla\\CMS\\Event\\User\\LoginButtonsEvent\: + 4\.3 will be removed in 6\.0 + You should use nullable values or exceptions instead of returning boolean false results\.$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Event/User/LoginButtonsEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\User\\LoginButtonsEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/User/LoginButtonsEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\User\\LoginEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/User/LoginEvent.php + + - + message: ''' + #^Call to deprecated method setResult\(\) of class Joomla\\CMS\\Event\\User\\LogoutEvent\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/User/LogoutEvent.php + + - + message: ''' + #^Access to deprecated property \$legacyArgumentsOrder of class Joomla\\CMS\\Event\\User\\UserEvent\: + 5\.0 will be removed in 6\.0$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/Event/User/UserEvent.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Event\\ReshapeArgumentsAware in class Joomla\\CMS\\Event\\User\\UserEvent\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Event/User/UserEvent.php + + - + message: ''' + #^Call to deprecated method setSubject\(\) of class Joomla\\CMS\\Event\\WebAsset\\WebAssetRegistryAssetChanged\: + 4\.4\.0 will be removed in 6\.0 + Use counterpart with onSet prefix$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Event/WebAsset/WebAssetRegistryAssetChanged.php + + - + message: ''' + #^Access to deprecated static property \$document of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticProperty.deprecated + count: 4 + path: libraries/src/Exception/ExceptionHandler.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Extension/ExtensionHelper.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Extension/LegacyComponent.php + + - + message: ''' + #^Class Joomla\\CMS\\Extension\\LegacyComponent implements deprecated interface Joomla\\CMS\\Fields\\FieldsFormServiceInterface\: + 5\.1\.0 will be removed in 7\.0$# + ''' + identifier: class.implementsDeprecatedInterface + count: 1 + path: libraries/src/Extension/LegacyComponent.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Component\\Router\\RouterLegacy\: + 5\.1 will be removed in 7\.0 + Will be removed without replacement\. Use the class based router + implementing the RouterInterface$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Extension/LegacyComponent.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Factory.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Filesystem\\Stream\: + 4\.4 will be removed in 6\.0 + Use Joomla\\Filesystem\\Stream instead\.$# + ''' + identifier: new.deprecated + count: 2 + path: libraries/src/Factory.php + + - + message: ''' + #^Return type of method Joomla\\CMS\\Factory\:\:getStream\(\) has typehint with deprecated class Joomla\\CMS\\Filesystem\\Stream\: + 4\.4 will be removed in 6\.0 + Use Joomla\\Filesystem\\Stream instead\.$# + ''' + identifier: return.deprecatedClass + count: 1 + path: libraries/src/Factory.php + + - + message: '#^Call to an undefined method Joomla\\CMS\\Feed\\FeedParser\:\:processFeedEntry\(\)\.$#' + identifier: method.notFound + count: 1 + path: libraries/src/Feed/FeedParser.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Filesystem/Patcher.php + + - + message: ''' + #^Call to method clean\(\) of deprecated class Joomla\\Filesystem\\Path\: + 4\.4 will be removed in 6\.0 + Use Joomla\\Filesystem\\Path instead\.$# + ''' + identifier: staticMethod.deprecatedClass + count: 1 + path: libraries/src/Filesystem/Path.php + + - + message: '#^Static call to instance method Joomla\\CMS\\Filesystem\\Support\\StringController\:\:getRef\(\)\.$#' + identifier: method.staticCall + count: 2 + path: libraries/src/Filesystem/Streams/StreamString.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Language\\Language\: + 4\.3 will be removed in 6\.0 + Use the language factory instead + Example\: Factory\:\:getContainer\(\)\-\>get\(LanguageFactoryInterface\:\:class\)\-\>createLanguage\(\$lang, \$debug\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Filter/OutputFilter.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Filter/OutputFilter.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/AliastagField.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/CalendarField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/CalendarField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/ComponentlayoutField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/ComponentsField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/ContenttypeField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/LanguageField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/LastvisitdaterangeField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/ModulelayoutField.php + + - + message: ''' + #^Call to deprecated method addScriptDeclaration\(\) of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager + Example\: \$wa\-\>addInlineScript\(\.\.\.\);$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Form/Field/ModulepositionField.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/ModulepositionField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/PluginsField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/RegistrationdaterangeField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/SpacerField.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Form\\Form\: + 4\.3 will be removed in 6\.0 + Use the FormFactory service from the container + Example\: Factory\:\:getContainer\(\)\-\>get\(FormFactoryInterface\:\:class\)\-\>createForm\(\$name, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Form/Field/SubformField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/TemplatestyleField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/TransitionField.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\User\\User\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or via \$app\-\>getIdentity\(\) + Example\: Factory\:\:getContainer\(\)\-\>get\(UserFactoryInterface\:\:class\)\-\>loadUserById\(\$id\)$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/UserField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Field/UseractiveField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Form.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Object\\CMSObject\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Form/Form.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/Form.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Form/FormField.php + + - + message: ''' + #^Access to deprecated static property \$includePaths of class Joomla\\CMS\\HTML\\HTMLHelper\: + 4\.0 will be removed in 6\.0$# + ''' + identifier: staticProperty.deprecated + count: 1 + path: libraries/src/HTML/HTMLHelper.php + + - + message: ''' + #^Access to deprecated static property \$registry of class Joomla\\CMS\\HTML\\HTMLHelper\: + 4\.0 will be removed in 6\.0$# + ''' + identifier: staticProperty.deprecated + count: 3 + path: libraries/src/HTML/HTMLHelper.php + + - + message: '#^Call to deprecated function strftime\(\)\.$#' + identifier: function.deprecated + count: 1 + path: libraries/src/HTML/HTMLHelper.php + + - + message: ''' + #^Call to deprecated method extract\(\) of class Joomla\\CMS\\HTML\\HTMLHelper\: + 4\.0 will be removed in 6\.0 + Use the service registry instead + HTMLHelper\:\:getServiceRegistry\(\)\-\>getService\(\$file\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/HTML/HTMLHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/HTMLHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/HTMLHelper.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/HTML/HTMLHelper.php + + - + message: ''' + #^Call to deprecated method register\(\) of class Joomla\\CMS\\HTML\\HTMLHelper\: + 4\.0 will be removed in 6\.0 + Use the service registry instead + HTMLHelper\:\:getServiceRegistry\(\)\-\>register\(\$key, \$function\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/HTML/HTMLHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/HTML/Helpers/Access.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Access.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/ActionsDropdown.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/HTML/Helpers/AdminLanguage.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Behavior.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 13 + path: libraries/src/HTML/Helpers/Bootstrap.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/HTML/Helpers/Category.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/HTML/Helpers/Category.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/ContentLanguage.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/HTML/Helpers/ContentLanguage.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/DraggableList.php + + - + message: ''' + #^Call to deprecated method addScriptDeclaration\(\) of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager + Example\: \$wa\-\>addInlineScript\(\.\.\.\);$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Dropdown.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Dropdown.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Email.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Form.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Grid.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Icons.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/JGrid.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/JGrid.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/JGrid.php + + - + message: ''' + #^Call to deprecated method addScriptDeclaration\(\) of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager + Example\: \$wa\-\>addInlineScript\(\.\.\.\);$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Jquery.php + + - + message: ''' + #^Call to deprecated method framework\(\) of class Joomla\\CMS\\HTML\\Helpers\\Jquery\: + 4\.0 will be removed in 6\.0 + Use webasset manager instead + Example\: + \$wa \= Factory\:\:getApplication\(\)\-\>getDocument\(\)\-\>getWebAssetManager\(\); + \$wa\-\>useScript\('jquery'\); + \$wa\-\>useScript\('jquery\-noconflict'\); + \$wa\-\>useScript\('jquery\-migrate'\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Jquery.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Jquery.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Links.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/HTML/Helpers/ListHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 4 + path: libraries/src/HTML/Helpers/Menu.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Menu.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/SearchTools.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/Select.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/HTML/Helpers/Tag.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/UiTab.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/User.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/HTML/Helpers/WorkflowStage.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\HTML\\Helpers\\FormBehavior\: + 4\.0 will be removed in 6\.0 + Will be removed without replacement + Use choice\.js instead + Example\: + Factory\:\:getDocument\(\)\-\>getWebAssetManager\(\)\-\>enableAsset\('choicesjs'\); + HTMLHelper\:\:_\('webcomponent', 'system/webcomponents/joomla\-field\-fancy\-select\.min\.js', \['version' \=\> 'auto', 'relative' \=\> true\]\);$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: libraries/src/HTML/Registry.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\HTML\\Helpers\\SortableList\: + 4\.0 will be removed in 6\.0 + Sortable List will be deprecated in favour of a new dragula script in 4\.0$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: libraries/src/HTML/Registry.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Help/Help.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Helper/CMSHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Helper/ContentHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Helper/ContentHelper.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\MVC\\View\\CanDo\: + 7\.0 Use the Registry directly$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Helper/ContentHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Helper/MediaHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Helper/ModuleHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Helper/ModuleHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Categories\\Categories\: + 4\.0 will be removed in 6\.0 + Use the ComponentInterface to get the categories + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\(\$component\)\-\>getCategory\(\$options, \$section\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Helper/RouteHelper.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Helper/RouteHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 10 + path: libraries/src/Helper/TagsHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Helper/TagsHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 4 + path: libraries/src/Helper/TagsHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: libraries/src/Helper/UserGroupsHelper.php + + - + message: ''' + #^Class Joomla\\CMS\\Http\\Transport\\CurlTransport implements deprecated interface Joomla\\CMS\\Http\\TransportInterface\: + 4\.0 will be removed in 6\.0 + Implement Joomla\\Http\\TransportInterface instead$# + ''' + identifier: class.implementsDeprecatedInterface + count: 1 + path: libraries/src/Http/Transport/CurlTransport.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Http\\Response\: + 4\.0 will be removed in 6\.0 + Use Joomla\\Http\\Response instead$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Http/Transport/CurlTransport.php + + - + message: ''' + #^Return type of method Joomla\\CMS\\Http\\Transport\\CurlTransport\:\:getResponse\(\) has typehint with deprecated class Joomla\\CMS\\Http\\Response\: + 4\.0 will be removed in 6\.0 + Use Joomla\\Http\\Response instead$# + ''' + identifier: return.deprecatedClass + count: 1 + path: libraries/src/Http/Transport/CurlTransport.php + + - + message: ''' + #^Return type of method Joomla\\CMS\\Http\\Transport\\CurlTransport\:\:request\(\) has typehint with deprecated class Joomla\\CMS\\Http\\Response\: + 4\.0 will be removed in 6\.0 + Use Joomla\\Http\\Response instead$# + ''' + identifier: return.deprecatedClass + count: 1 + path: libraries/src/Http/Transport/CurlTransport.php + + - + message: ''' + #^Class Joomla\\CMS\\Http\\Transport\\SocketTransport implements deprecated interface Joomla\\CMS\\Http\\TransportInterface\: + 4\.0 will be removed in 6\.0 + Implement Joomla\\Http\\TransportInterface instead$# + ''' + identifier: class.implementsDeprecatedInterface + count: 1 + path: libraries/src/Http/Transport/SocketTransport.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Http\\Response\: + 4\.0 will be removed in 6\.0 + Use Joomla\\Http\\Response instead$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Http/Transport/SocketTransport.php + + - + message: ''' + #^Return type of method Joomla\\CMS\\Http\\Transport\\SocketTransport\:\:getResponse\(\) has typehint with deprecated class Joomla\\CMS\\Http\\Response\: + 4\.0 will be removed in 6\.0 + Use Joomla\\Http\\Response instead$# + ''' + identifier: return.deprecatedClass + count: 1 + path: libraries/src/Http/Transport/SocketTransport.php + + - + message: ''' + #^Return type of method Joomla\\CMS\\Http\\Transport\\SocketTransport\:\:request\(\) has typehint with deprecated class Joomla\\CMS\\Http\\Response\: + 4\.0 will be removed in 6\.0 + Use Joomla\\Http\\Response instead$# + ''' + identifier: return.deprecatedClass + count: 1 + path: libraries/src/Http/Transport/SocketTransport.php + + - + message: ''' + #^Class Joomla\\CMS\\Http\\Transport\\StreamTransport implements deprecated interface Joomla\\CMS\\Http\\TransportInterface\: + 4\.0 will be removed in 6\.0 + Implement Joomla\\Http\\TransportInterface instead$# + ''' + identifier: class.implementsDeprecatedInterface + count: 1 + path: libraries/src/Http/Transport/StreamTransport.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Http\\Response\: + 4\.0 will be removed in 6\.0 + Use Joomla\\Http\\Response instead$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Http/Transport/StreamTransport.php + + - + message: ''' + #^Return type of method Joomla\\CMS\\Http\\Transport\\StreamTransport\:\:getResponse\(\) has typehint with deprecated class Joomla\\CMS\\Http\\Response\: + 4\.0 will be removed in 6\.0 + Use Joomla\\Http\\Response instead$# + ''' + identifier: return.deprecatedClass + count: 1 + path: libraries/src/Http/Transport/StreamTransport.php + + - + message: ''' + #^Return type of method Joomla\\CMS\\Http\\Transport\\StreamTransport\:\:request\(\) has typehint with deprecated class Joomla\\CMS\\Http\\Response\: + 4\.0 will be removed in 6\.0 + Use Joomla\\Http\\Response instead$# + ''' + identifier: return.deprecatedClass + count: 1 + path: libraries/src/Http/Transport/StreamTransport.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 4 + path: libraries/src/Image/Image.php + + - + message: ''' + #^Class Joomla\\CMS\\Input\\Cli extends deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: class.extendsDeprecatedClass + count: 1 + path: libraries/src/Input/Cli.php + + - + message: ''' + #^Class Joomla\\CMS\\Input\\Cookie extends deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: class.extendsDeprecatedClass + count: 1 + path: libraries/src/Input/Cookie.php + + - + message: ''' + #^Class Joomla\\CMS\\Input\\Files extends deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: class.extendsDeprecatedClass + count: 1 + path: libraries/src/Input/Files.php + + - + message: ''' + #^Class Joomla\\CMS\\Input\\Json extends deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: class.extendsDeprecatedClass + count: 1 + path: libraries/src/Input/Json.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 5 + path: libraries/src/Installer/Adapter/ComponentAdapter.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 13 + path: libraries/src/Installer/Adapter/ComponentAdapter.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/Installer/Adapter/FileAdapter.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Installer/Adapter/FileAdapter.php + + - + message: ''' + #^Call to deprecated method getCache\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the cache controller factory instead + Example\: + Factory\:\:getContainer\(\)\-\>get\(CacheControllerFactoryInterface\:\:class\)\-\>createCacheController\(\$handler, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 4 + path: libraries/src/Installer/Adapter/LanguageAdapter.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 7 + path: libraries/src/Installer/Adapter/LanguageAdapter.php + + - + message: ''' + #^Call to deprecated method set\(\) of class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3\.0 will be removed in 6\.0 + Create a proper setter function for the property$# + ''' + identifier: method.deprecated + count: 3 + path: libraries/src/Installer/Adapter/LanguageAdapter.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Installer/Adapter/LibraryAdapter.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 4 + path: libraries/src/Installer/Adapter/LibraryAdapter.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 3 + path: libraries/src/Installer/Adapter/ModuleAdapter.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 5 + path: libraries/src/Installer/Adapter/ModuleAdapter.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Installer/Adapter/PackageAdapter.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Installer/Adapter/PackageAdapter.php + + - + message: ''' + #^Call to deprecated method set\(\) of class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3\.0 will be removed in 6\.0 + Create a proper setter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Installer/Adapter/PackageAdapter.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Installer/Adapter/PluginAdapter.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: libraries/src/Installer/Adapter/PluginAdapter.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Installer/Adapter/TemplateAdapter.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 4 + path: libraries/src/Installer/Adapter/TemplateAdapter.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Installer/Adapter/TemplateAdapter.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Installer/Installer.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Installer/Installer.php + + - + message: ''' + #^Call to method __construct\(\) of deprecated class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: staticMethod.deprecatedClass + count: 1 + path: libraries/src/Installer/Installer.php + + - + message: ''' + #^Class Joomla\\CMS\\Installer\\Installer extends deprecated class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: class.extendsDeprecatedClass + count: 1 + path: libraries/src/Installer/Installer.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Installer/Installer.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Installer/InstallerAdapter.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Installer/InstallerAdapter.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Installer/InstallerAdapter.php + + - + message: ''' + #^Call to deprecated method set\(\) of class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3\.0 will be removed in 6\.0 + Create a proper setter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Installer/InstallerAdapter.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyErrorHandlingTrait in class Joomla\\CMS\\Installer\\InstallerExtension\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of setError$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Installer/InstallerExtension.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyPropertyManagementTrait in class Joomla\\CMS\\Installer\\InstallerExtension\: + 4\.3\.0 will be removed in 6\.0 + Will be removed without replacement + Create proper setter functions for the individual properties or use a \\Joomla\\Registry\\Registry$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Installer/InstallerExtension.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Updater\\Update\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Installer/InstallerHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: libraries/src/Installer/InstallerScript.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Installer/InstallerScript.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Language/Associations.php + + - + message: ''' + #^Access to deprecated property \$ignoredSearchWordsCallback of class Joomla\\CMS\\Language\\Language\: + 4\.4 will be removed in 6\.0 without replacement$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Language/Language.php + + - + message: ''' + #^Access to deprecated property \$lowerLimitSearchWordCallback of class Joomla\\CMS\\Language\\Language\: + 4\.4 will be removed in 6\.0 without replacement$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Language/Language.php + + - + message: ''' + #^Access to deprecated property \$searchDisplayedCharactersNumberCallback of class Joomla\\CMS\\Language\\Language\: + 4\.4 will be removed in 6\.0 without replacement$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Language/Language.php + + - + message: ''' + #^Access to deprecated property \$upperLimitSearchWordCallback of class Joomla\\CMS\\Language\\Language\: + 4\.4 will be removed in 6\.0 without replacement$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Language/Language.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Language/LanguageHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Language/Multilanguage.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Language/Text.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 7 + path: libraries/src/Language/Text.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Layout/FileLayout.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Layout/FileLayout.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 4 + path: libraries/src/Log/Log.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Log/Logger/DatabaseLogger.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\Database\\DatabaseDriver\: + 3\.0 Use DatabaseFactory\:\:getDriver\(\) instead$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Log/Logger/DatabaseLogger.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/MVC/Controller/AdminController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 6 + path: libraries/src/MVC/Controller/ApiController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/MVC/Controller/ApiController.php + + - + message: '#^Call to deprecated method singularize\(\) of class Doctrine\\Common\\Inflector\\Inflector\.$#' + identifier: staticMethod.deprecated + count: 4 + path: libraries/src/MVC/Controller/ApiController.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/MVC/Controller/ApiController.php + + - + message: ''' + #^Call to deprecated method addModelPath\(\) of class Joomla\\CMS\\MVC\\Controller\\BaseController\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement\. Get the model through the MVCFactory instead$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/MVC/Controller/BaseController.php + + - + message: ''' + #^Call to deprecated method getCache\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the cache controller factory instead + Example\: + Factory\:\:getContainer\(\)\-\>get\(CacheControllerFactoryInterface\:\:class\)\-\>createCacheController\(\$handler, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/MVC/Controller/BaseController.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 7 + path: libraries/src/MVC/Controller/FormController.php + + - + message: ''' + #^Call to deprecated method getErrors\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getErrors$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/MVC/Controller/FormController.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement\. Get the model through the MVCFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('com_xxx'\)\-\>getMVCFactory\(\)\-\>createModel\(\$type, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/MVC/Factory/LegacyFactory.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/MVC/Factory/LegacyFactory.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/MVC/Factory/LegacyFactory.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/MVC/Model/AdminModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 26 + path: libraries/src/MVC/Model/AdminModel.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/MVC/Model/AdminModel.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/MVC/Model/AdminModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 38 + path: libraries/src/MVC/Model/AdminModel.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: libraries/src/MVC/Model/AdminModel.php + + - + message: ''' + #^Call to deprecated method addTablePath\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement\. Get the model through the MVCFactory instead$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: libraries/src/MVC/Model/BaseDatabaseModel.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/MVC/Model/BaseDatabaseModel.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/MVC/Model/BaseDatabaseModel.php + + - + message: ''' + #^Call to deprecated method setDbo\(\) of class Joomla\\CMS\\MVC\\Model\\BaseDatabaseModel\: + 4\.3 will be removed in 6\.0 + Use setDatabase\(\) instead + Example\: \$model\-\>setDatabase\(\$db\);$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/MVC/Model/BaseDatabaseModel.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\MVC\\Model\\State\: + 5\.0\.0 will be removed in 7\.0, use the Registry directly$# + ''' + identifier: new.deprecated + count: 2 + path: libraries/src/MVC/Model/BaseModel.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\MVC\\Model\\LegacyModelLoaderTrait in class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/MVC/Model/BaseModel.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyErrorHandlingTrait in class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of setError$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/MVC/Model/BaseModel.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyPropertyManagementTrait in class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 4\.3\.0 will be removed in 6\.0 + Will be removed without replacement + Create proper setter functions for the individual properties or use a \\Joomla\\Registry\\Registry$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/MVC/Model/BaseModel.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 5 + path: libraries/src/MVC/Model/FormModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 9 + path: libraries/src/MVC/Model/FormModel.php + + - + message: ''' + #^Access to deprecated property \$filterBlacklist of class Joomla\\CMS\\MVC\\Model\\ListModel\: + 4\.0 will be removed in 6\.0 + Use \$filterForbiddenList instead$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/MVC/Model/ListModel.php + + - + message: ''' + #^Access to deprecated property \$listBlacklist of class Joomla\\CMS\\MVC\\Model\\ListModel\: + 4\.0 will be removed in 6\.0 + Use \$listForbiddenList instead$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/MVC/Model/ListModel.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/MVC/Model/ListModel.php + + - + message: ''' + #^Access to deprecated property \$document of class Joomla\\CMS\\MVC\\View\\AbstractView\: + 4\.4\.0 will be removed in 6\.0 + Use \$this\-\>getDocument\(\) instead$# + ''' + identifier: property.deprecated + count: 3 + path: libraries/src/MVC/View/AbstractView.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyErrorHandlingTrait in class Joomla\\CMS\\MVC\\View\\AbstractView\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of setError$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/MVC/View/AbstractView.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyPropertyManagementTrait in class Joomla\\CMS\\MVC\\View\\AbstractView\: + 4\.3\.0 will be removed in 6\.0 + Will be removed without replacement + Create proper setter functions for the individual properties or use a \\Joomla\\Registry\\Registry$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/MVC/View/AbstractView.php + + - + message: '#^Access to an undefined property Joomla\\CMS\\MVC\\View\\CategoriesView\:\:\$maxLevelcat\.$#' + identifier: property.notFound + count: 1 + path: libraries/src/MVC/View/CategoriesView.php + + - + message: '#^Access to an undefined property Joomla\\CMS\\MVC\\View\\CategoriesView\:\:\$pageclass_sfx\.$#' + identifier: property.notFound + count: 1 + path: libraries/src/MVC/View/CategoriesView.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\MVC\\View\\AbstractView\: + 5\.3\.0 will be removed in 7\.0\. + Retrieve the model with \$model \= \$this\-\>getModel\(\); and call the methods + to the model directly, e\.g\. \$model\-\>getItems\(\) instead of \$this\-\>get\('Items'\)\.$# + ''' + identifier: method.deprecated + count: 4 + path: libraries/src/MVC/View/CategoriesView.php + + - + message: '#^Access to an undefined property Joomla\\CMS\\MVC\\View\\CategoryFeedView\:\:\$viewName\.$#' + identifier: property.notFound + count: 1 + path: libraries/src/MVC/View/CategoryFeedView.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\MVC\\View\\AbstractView\: + 5\.3\.0 will be removed in 7\.0\. + Retrieve the model with \$model \= \$this\-\>getModel\(\); and call the methods + to the model directly, e\.g\. \$model\-\>getItems\(\) instead of \$this\-\>get\('Items'\)\.$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/MVC/View/CategoryFeedView.php + + - + message: '#^Access to an undefined property Joomla\\CMS\\MVC\\View\\CategoryView\:\:\$maxLevel\.$#' + identifier: property.notFound + count: 1 + path: libraries/src/MVC/View/CategoryView.php + + - + message: '#^Access to an undefined property Joomla\\CMS\\MVC\\View\\CategoryView\:\:\$menu\.$#' + identifier: property.notFound + count: 1 + path: libraries/src/MVC/View/CategoryView.php + + - + message: '#^Access to an undefined property Joomla\\CMS\\MVC\\View\\CategoryView\:\:\$pageclass_sfx\.$#' + identifier: property.notFound + count: 1 + path: libraries/src/MVC/View/CategoryView.php + + - + message: '#^Access to an undefined property Joomla\\CMS\\MVC\\View\\CategoryView\:\:\$parent\.$#' + identifier: property.notFound + count: 1 + path: libraries/src/MVC/View/CategoryView.php + + - + message: '#^Access to an undefined property Joomla\\CMS\\MVC\\View\\CategoryView\:\:\$pathway\.$#' + identifier: property.notFound + count: 1 + path: libraries/src/MVC/View/CategoryView.php + + - + message: '#^Access to an undefined property Joomla\\CMS\\MVC\\View\\CategoryView\:\:\$user\.$#' + identifier: property.notFound + count: 1 + path: libraries/src/MVC/View/CategoryView.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\MVC\\View\\AbstractView\: + 5\.3\.0 will be removed in 7\.0\. + Retrieve the model with \$model \= \$this\-\>getModel\(\); and call the methods + to the model directly, e\.g\. \$model\-\>getItems\(\) instead of \$this\-\>get\('Items'\)\.$# + ''' + identifier: method.deprecated + count: 7 + path: libraries/src/MVC/View/CategoryView.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 4 + path: libraries/src/MVC/View/CategoryView.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\MVC\\View\\AbstractView\: + 5\.3\.0 will be removed in 7\.0\. + Retrieve the model with \$model \= \$this\-\>getModel\(\); and call the methods + to the model directly, e\.g\. \$model\-\>getItems\(\) instead of \$this\-\>get\('Items'\)\.$# + ''' + identifier: method.deprecated + count: 5 + path: libraries/src/MVC/View/FormView.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\MVC\\View\\CanDo\: + 7\.0 Use the Registry directly$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/MVC/View/FormView.php + + - + message: '#^Access to an undefined property Joomla\\CMS\\MVC\\View\\HtmlView\:\:\$baseurl\.$#' + identifier: property.notFound + count: 1 + path: libraries/src/MVC/View/HtmlView.php + + - + message: '#^Access to an undefined property Joomla\\CMS\\MVC\\View\\HtmlView\:\:\$form\.$#' + identifier: property.notFound + count: 1 + path: libraries/src/MVC/View/HtmlView.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\MVC\\View\\AbstractView\: + 5\.3\.0 will be removed in 7\.0\. + Retrieve the model with \$model \= \$this\-\>getModel\(\); and call the methods + to the model directly, e\.g\. \$model\-\>getItems\(\) instead of \$this\-\>get\('Items'\)\.$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/MVC/View/HtmlView.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/MVC/View/HtmlView.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\MVC\\View\\AbstractView\: + 5\.3\.0 will be removed in 7\.0\. + Retrieve the model with \$model \= \$this\-\>getModel\(\); and call the methods + to the model directly, e\.g\. \$model\-\>getItems\(\) instead of \$this\-\>get\('Items'\)\.$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/MVC/View/JsonApiView.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\MVC\\View\\AbstractView\: + 5\.3\.0 will be removed in 7\.0\. + Retrieve the model with \$model \= \$this\-\>getModel\(\); and call the methods + to the model directly, e\.g\. \$model\-\>getItems\(\) instead of \$this\-\>get\('Items'\)\.$# + ''' + identifier: method.deprecated + count: 6 + path: libraries/src/MVC/View/ListView.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/MVC/View/ListView.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\MVC\\View\\CanDo\: + 7\.0 Use the Registry directly$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/MVC/View/ListView.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 4 + path: libraries/src/Mail/MailTemplate.php + + - + message: ''' + #^Call to deprecated method getMailer\(\) of class Joomla\\CMS\\Factory\: + 4\.4\.0 will be removed in 6\.0 + Use the mailer service in the DI container and create a mailer from there + Example\: + Factory\:\:getContainer\(\)\-\>get\(MailerFactoryInterface\:\:class\)\-\>createMailer\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Mail/MailTemplate.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Menu/AbstractMenu.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Menu/SiteMenu.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Pathway/SitePathway.php + + - + message: ''' + #^Access to deprecated property \$allowLegacyListeners of class Joomla\\CMS\\Plugin\\CMSPlugin\: + 4\.3 will be removed in 6\.0 + Implement your plugin methods accepting an AbstractEvent object + Example\: + onEventTriggerName\(AbstractEvent \$event\) \{ + \$context \= \$event\-\>getArgument\(\.\.\.\); + \}$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Plugin/CMSPlugin.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Plugin/CMSPlugin.php + + - + message: ''' + #^Call to deprecated method getDispatcher\(\) of class Joomla\\CMS\\Plugin\\CMSPlugin\: + 5\.2 will be removed in 7\.0 + Plugin should implement DispatcherAwareInterface on its own, when it is needed\.$# + ''' + identifier: method.deprecated + count: 3 + path: libraries/src/Plugin/CMSPlugin.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Plugin/CMSPlugin.php + + - + message: ''' + #^Call to deprecated method setDispatcher\(\) of class Joomla\\CMS\\Plugin\\CMSPlugin\: + 5\.2 will be removed in 7\.0 + Plugin should implement DispatcherAwareInterface on its own, when it is needed\.$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Plugin/CMSPlugin.php + + - + message: ''' + #^Call to deprecated method setLanguage\(\) of class Joomla\\CMS\\Plugin\\CMSPlugin\: + 5\.2 will be removed in 7\.0 + Plugin should use the language from Application, and only after the app is initialised$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Plugin/CMSPlugin.php + + - + message: ''' + #^Call to deprecated method getCache\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the cache controller factory instead + Example\: + Factory\:\:getContainer\(\)\-\>get\(CacheControllerFactoryInterface\:\:class\)\-\>createCacheController\(\$handler, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Plugin/PluginHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Plugin/PluginHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Plugin/PluginHelper.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Profiler/Profiler.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Proxy/ArrayReadOnlyProxy.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 2 + path: libraries/src/Proxy/ObjectReadOnlyProxy.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Component\\Router\\RouterLegacy\: + 5\.1 will be removed in 7\.0 + Will be removed without replacement\. Use the class based router + implementing the RouterInterface$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Router/SiteRouter.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Schema/ChangeSet.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Object\\CMSObject\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Serializer/JoomlaSerializer.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: classConstant.deprecatedClass + count: 2 + path: libraries/src/Service/Provider/Application.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Authentication\\Password\\MD5Handler\: + 4\.0 will be removed in 6\.0 + Support for MD5 hashed passwords will be removed without replacement$# + ''' + identifier: classConstant.deprecatedClass + count: 4 + path: libraries/src/Service/Provider/Authentication.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Authentication\\Password\\PHPassHandler\: + 4\.0 will be removed in 6\.0 + Support for PHPass hashed passwords will be removed without replacement$# + ''' + identifier: classConstant.deprecatedClass + count: 4 + path: libraries/src/Service/Provider/Authentication.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Authentication\\Password\\MD5Handler\: + 4\.0 will be removed in 6\.0 + Support for MD5 hashed passwords will be removed without replacement$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Service/Provider/Authentication.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Authentication\\Password\\PHPassHandler\: + 4\.0 will be removed in 6\.0 + Support for PHPass hashed passwords will be removed without replacement$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Service/Provider/Authentication.php + + - + message: ''' + #^Return type of anonymous function has typehint with deprecated class Joomla\\CMS\\Authentication\\Password\\MD5Handler\: + 4\.0 will be removed in 6\.0 + Support for MD5 hashed passwords will be removed without replacement$# + ''' + identifier: return.deprecatedClass + count: 1 + path: libraries/src/Service/Provider/Authentication.php + + - + message: ''' + #^Return type of anonymous function has typehint with deprecated class Joomla\\CMS\\Authentication\\Password\\PHPassHandler\: + 4\.0 will be removed in 6\.0 + Support for PHPass hashed passwords will be removed without replacement$# + ''' + identifier: return.deprecatedClass + count: 1 + path: libraries/src/Service/Provider/Authentication.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Service/Provider/Config.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\Database\\DatabaseDriver\: + 3\.0 Use DatabaseFactory\:\:getDriver\(\) instead$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Service/Provider/Database.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: libraries/src/Service/Provider/Input.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/Service/Provider/Input.php + + - + message: ''' + #^Return type of anonymous function has typehint with deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: return.deprecatedClass + count: 1 + path: libraries/src/Service/Provider/Input.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Input\\Input\: + 4\.3 will be removed in 6\.0\. + Use Joomla\\Input\\Input instead$# + ''' + identifier: classConstant.deprecatedClass + count: 3 + path: libraries/src/Service/Provider/Session.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Session/Session.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/Table/Asset.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Table/Category.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 4 + path: libraries/src/Table/Category.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Table/Content.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 5 + path: libraries/src/Table/Content.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Table/ContentHistory.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/Table/ContentType.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Table/CoreContent.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/Table/CoreContent.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/Table/Extension.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 5 + path: libraries/src/Table/Language.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 11 + path: libraries/src/Table/Menu.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Table/MenuType.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Table/MenuType.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 7 + path: libraries/src/Table/MenuType.php + + - + message: '#^Class Joomla\\CMS\\Table\\MenuType referenced with incorrect case\: Joomla\\CMS\\Table\\Menutype\.$#' + identifier: class.nameCase + count: 2 + path: libraries/src/Table/MenuType.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 3 + path: libraries/src/Table/Module.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/Table/Nested.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 12 + path: libraries/src/Table/Nested.php + + - + message: ''' + #^Access to deprecated property \$_errors of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 JError has been deprecated$# + ''' + identifier: property.deprecated + count: 1 + path: libraries/src/Table/Table.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Table/Table.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 3 + path: libraries/src/Table/Table.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/Table/Table.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 8 + path: libraries/src/Table/Table.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyErrorHandlingTrait in class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of setError$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Table/Table.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyPropertyManagementTrait in class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Will be removed without replacement + Create proper setter functions for the individual properties or use a \\Joomla\\Registry\\Registry$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Table/Table.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/Table/Update.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/Table/UpdateSite.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 8 + path: libraries/src/Table/User.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 7 + path: libraries/src/Table/Usergroup.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 3 + path: libraries/src/Table/ViewLevel.php + + - + message: ''' + #^Call to deprecated method addScriptDeclaration\(\) of class Joomla\\CMS\\Document\\Document\: + 4\.3 will be removed in 7\.0 + Use WebAssetManager + Example\: \$wa\-\>addInlineScript\(\.\.\.\);$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/Toolbar/Button/PopupButton.php + + - + message: ''' + #^Call to deprecated method getDocument\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the document service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getDocument\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Toolbar/Button/PopupButton.php + + - + message: ''' + #^Call to deprecated method getButtonPath\(\) of class Joomla\\CMS\\Toolbar\\Toolbar\: + 4\.0 will be removed in 6\.0 + ToolbarButton buttons should be autoloaded via namespaces$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Toolbar/ContainerAwareToolbarFactory.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Toolbar/Toolbar.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Toolbar/Toolbar.php + + - + message: ''' + #^Call to deprecated method fetchButton\(\) of class Joomla\\CMS\\Toolbar\\ToolbarButton\: + 4\.3 will be removed in 6\.0 + Use render\(\) instead\.$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/Toolbar/ToolbarButton.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Toolbar/ToolbarHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Toolbar\\Toolbar\: + 4\.0 will be removed in 6\.0 + Use the ToolbarFactoryInterface instead + Example\: + Factory\:\:getContainer\(\)\-\>get\(ToolbarFactoryInterface\:\:class\)\-\>createToolbar\(\$name\)$# + ''' + identifier: staticMethod.deprecated + count: 34 + path: libraries/src/Toolbar/ToolbarHelper.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Toolbar/ToolbarHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/UCM/UCMBase.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/UCM/UCMContent.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/UCM/UCMContent.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/UCM/UCMType.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Updater/Adapter/CollectionAdapter.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Updater/Adapter/ExtensionAdapter.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Updater/Adapter/ExtensionAdapter.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Updater/Adapter/TufAdapter.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Updater/ConstraintChecker.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/Updater/Update.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyErrorHandlingTrait in class Joomla\\CMS\\Updater\\Update\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of setError$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Updater/Update.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyPropertyManagementTrait in class Joomla\\CMS\\Updater\\Update\: + 4\.3\.0 will be removed in 6\.0 + Will be removed without replacement + Create proper setter functions for the individual properties or use a \\Joomla\\Registry\\Registry$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/Updater/Update.php + + - + message: ''' + #^Class Joomla\\CMS\\Updater\\UpdateAdapter extends deprecated class Joomla\\CMS\\Adapter\\AdapterInstance\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: class.extendsDeprecatedClass + count: 1 + path: libraries/src/Updater/UpdateAdapter.php + + - + message: ''' + #^Return type of method Joomla\\CMS\\Updater\\UpdateAdapter\:\:getUpdateSiteResponse\(\) has typehint with deprecated class Joomla\\CMS\\Http\\Response\: + 4\.0 will be removed in 6\.0 + Use Joomla\\Http\\Response instead$# + ''' + identifier: return.deprecatedClass + count: 1 + path: libraries/src/Updater/UpdateAdapter.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Updater/Updater.php + + - + message: ''' + #^Call to method __construct\(\) of deprecated class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: staticMethod.deprecatedClass + count: 1 + path: libraries/src/Updater/Updater.php + + - + message: ''' + #^Class Joomla\\CMS\\Updater\\Updater extends deprecated class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement$# + ''' + identifier: class.extendsDeprecatedClass + count: 1 + path: libraries/src/Updater/Updater.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Updater/Updater.php + + - + message: '#^Unsafe usage of new static\(\)\.$#' + identifier: new.static + count: 1 + path: libraries/src/Uri/Uri.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/User/User.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/User/User.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\User\\User\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 2 + path: libraries/src/User/User.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/User/User.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/User/User.php + + - + message: ''' + #^Call to deprecated method getProperties\(\) of class Joomla\\CMS\\User\\User\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 6 + path: libraries/src/User/User.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/User/User.php + + - + message: ''' + #^Call to deprecated method isCli\(\) of interface Joomla\\CMS\\Application\\CMSApplicationInterface\: + 4\.0 will be removed in 6\.0 + Will be removed without replacement\. CLI will be handled by the joomla/console package instead$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/User/User.php + + - + message: ''' + #^Call to deprecated method setError\(\) of class Joomla\\CMS\\User\\User\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of using setError$# + ''' + identifier: method.deprecated + count: 5 + path: libraries/src/User/User.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyErrorHandlingTrait in class Joomla\\CMS\\User\\User\: + 4\.3 will be removed in 6\.0 + Will be removed without replacement + Throw an Exception instead of setError$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/User/User.php + + - + message: ''' + #^Usage of deprecated trait Joomla\\CMS\\Object\\LegacyPropertyManagementTrait in class Joomla\\CMS\\User\\User\: + 4\.3\.0 will be removed in 6\.0 + Will be removed without replacement + Create proper setter functions for the individual properties or use a \\Joomla\\Registry\\Registry$# + ''' + identifier: traitUse.deprecated + count: 1 + path: libraries/src/User/User.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 5 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\User\\User\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\User\\User\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or via \$app\-\>getIdentity\(\) + Example\: Factory\:\:getContainer\(\)\-\>get\(UserFactoryInterface\:\:class\)\-\>loadUserById\(\$id\)$# + ''' + identifier: staticMethod.deprecated + count: 5 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 6 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Authentication\\Password\\MD5Handler\: + 4\.0 will be removed in 6\.0 + Support for MD5 hashed passwords will be removed without replacement$# + ''' + identifier: classConstant.deprecatedClass + count: 1 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Fetching class constant class of deprecated class Joomla\\CMS\\Authentication\\Password\\PHPassHandler\: + 4\.0 will be removed in 6\.0 + Support for PHPass hashed passwords will be removed without replacement$# + ''' + identifier: classConstant.deprecatedClass + count: 2 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Fetching deprecated class constant HASH_ARGON2ID_BC of class Joomla\\CMS\\User\\UserHelper\: + 4\.0 will be removed in 6\.0 + Use UserHelper\:\:HASH_ARGON2ID instead$# + ''' + identifier: classConstant.deprecated + count: 1 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Fetching deprecated class constant HASH_ARGON2I_BC of class Joomla\\CMS\\User\\UserHelper\: + 4\.0 will be removed in 6\.0 + Use UserHelper\:\:HASH_ARGON2I instead$# + ''' + identifier: classConstant.deprecated + count: 1 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Fetching deprecated class constant HASH_BCRYPT_BC of class Joomla\\CMS\\User\\UserHelper\: + 4\.0 will be removed in 6\.0 + Use UserHelper\:\:HASH_BCRYPT instead$# + ''' + identifier: classConstant.deprecated + count: 1 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Fetching deprecated class constant HASH_MD5 of class Joomla\\CMS\\User\\UserHelper\: + 4\.0 will be removed in 6\.0 + Support for MD5 hashed passwords will be removed use any of the other hashing methods$# + ''' + identifier: classConstant.deprecated + count: 1 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Fetching deprecated class constant HASH_PHPASS of class Joomla\\CMS\\User\\UserHelper\: + 4\.0 will be removed in 6\.0 + Support for PHPass hashed passwords will be removed use any of the other hashing methods$# + ''' + identifier: classConstant.deprecated + count: 1 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Instantiation of deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/User/UserHelper.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Versioning/Versioning.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: libraries/src/Versioning/Versioning.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: libraries/src/WebAsset/AssetItem/KeepaliveAssetItem.php + + - + message: ''' + #^Access to deprecated property \$tokenBindingHandler of class Joomla\\CMS\\WebAuthn\\Server\: + 6\.0 Will be removed when we upgrade to WebAuthn library 5\.0 or later$# + ''' + identifier: property.deprecated + count: 2 + path: libraries/src/WebAuthn/Server.php + + - + message: ''' + #^Instantiation of deprecated class Webauthn\\TokenBinding\\IgnoreTokenBindingHandler\: + Since 4\.3\.0 and will be removed in 5\.0\.0$# + ''' + identifier: new.deprecated + count: 1 + path: libraries/src/WebAuthn/Server.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Adapter\\Adapter\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 3 + path: plugins/actionlog/joomla/src/Extension/Joomla.php + + - + message: ''' + #^Call to deprecated method postStoreProcess\(\) of class Joomla\\CMS\\Helper\\TagsHelper\: + 5\.3 will be removed in 7\.0$# + ''' + identifier: method.deprecated + count: 3 + path: plugins/behaviour/taggable/src/Extension/Taggable.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: plugins/content/confirmconsent/src/Field/ConsentBoxField.php + + - + message: ''' + #^Call to deprecated method getDispatcher\(\) of class Joomla\\Plugin\\Content\\Finder\\Extension\\Finder\: + 5\.2 will be removed in 7\.0 + Plugin should implement DispatcherAwareInterface on its own, when it is needed\.$# + ''' + identifier: method.deprecated + count: 6 + path: plugins/content/finder/src/Extension/Finder.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Language\\Language\: + 4\.3 will be removed in 6\.0 + Use the language factory instead + Example\: Factory\:\:getContainer\(\)\-\>get\(LanguageFactoryInterface\:\:class\)\-\>createLanguage\(\$lang, \$debug\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/content/joomla/src/Extension/Joomla.php + + - + message: '#^Access to property \$list on an unknown class PageBreak\.$#' + identifier: class.notFound + count: 2 + path: plugins/content/pagebreak/tmpl/navigation.php + + - + message: '#^Call to method getApplication\(\) on an unknown class PageBreak\.$#' + identifier: class.notFound + count: 1 + path: plugins/content/pagebreak/tmpl/navigation.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Plugin\\CMSPlugin\: + 5\.2 will be removed in 7\.0 + Plugin should use the language from Application, and only after the app is initialised\.$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/content/pagenavigation/tmpl/default.php + + - + message: ''' + #^Call to deprecated method onDisplay\(\) of class Joomla\\Plugin\\EditorsXtd\\Article\\Extension\\Article\: + 5\.0 Use onEditorButtonsSetup event$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/editors-xtd/article/src/Extension/Article.php + + - + message: ''' + #^Call to deprecated method onDisplay\(\) of class Joomla\\Plugin\\EditorsXtd\\Contact\\Extension\\Contact\: + 5\.0 Use onEditorButtonsSetup event$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/editors-xtd/contact/src/Extension/Contact.php + + - + message: ''' + #^Call to deprecated method onDisplay\(\) of class Joomla\\Plugin\\EditorsXtd\\Menu\\Extension\\Menu\: + 5\.0 Use onEditorButtonsSetup event$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/editors-xtd/menu/src/Extension/Menu.php + + - + message: ''' + #^Call to deprecated method onDisplay\(\) of class Joomla\\Plugin\\EditorsXtd\\Module\\Extension\\Module\: + 5\.0 Use onEditorButtonsSetup event$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/editors-xtd/module/src/Extension/Module.php + + - + message: ''' + #^Call to deprecated method onDisplay\(\) of class Joomla\\Plugin\\EditorsXtd\\PageBreak\\Extension\\PageBreak\: + 5\.0 Use onEditorButtonsSetup event$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/editors-xtd/pagebreak/src/Extension/PageBreak.php + + - + message: ''' + #^Call to deprecated method onDisplay\(\) of class Joomla\\Plugin\\EditorsXtd\\ReadMore\\Extension\\ReadMore\: + 5\.0 Use onEditorButtonsSetup event$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/editors-xtd/readmore/src/Extension/ReadMore.php + + - + message: '#^Call to method escape\(\) on an unknown class FileLayout\.$#' + identifier: class.notFound + count: 2 + path: plugins/editors/codemirror/layouts/editors/codemirror/codemirror.php + + - + message: ''' + #^Call to deprecated method getDispatcher\(\) of class Joomla\\Plugin\\Editors\\CodeMirror\\Extension\\Codemirror\: + 5\.2 will be removed in 7\.0 + Plugin should implement DispatcherAwareInterface on its own, when it is needed\.$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/editors/codemirror/src/Extension/Codemirror.php + + - + message: ''' + #^Call to deprecated method getDispatcher\(\) of class Joomla\\Plugin\\Editors\\None\\Extension\\None\: + 5\.2 will be removed in 7\.0 + Plugin should implement DispatcherAwareInterface on its own, when it is needed\.$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/editors/none/src/Extension/None.php + + - + message: ''' + #^Call to deprecated method getDispatcher\(\) of class Joomla\\Plugin\\Editors\\TinyMCE\\Extension\\TinyMCE\: + 5\.2 will be removed in 7\.0 + Plugin should implement DispatcherAwareInterface on its own, when it is needed\.$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/editors/tinymce/src/Extension/TinyMCE.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Form\\Form\: + 4\.3 will be removed in 6\.0 + Use the FormFactory service from the container + Example\: Factory\:\:getContainer\(\)\-\>get\(FormFactoryInterface\:\:class\)\-\>createForm\(\$name, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/editors/tinymce/src/Field/TinymcebuilderField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/editors/tinymce/src/Field/TinymcebuilderField.php + + - + message: '#^Call to an undefined method Joomla\\Plugin\\Editors\\TinyMCE\\Provider\\TinyMCEProvider\:\:getApplication\(\)\.$#' + identifier: method.notFound + count: 1 + path: plugins/editors/tinymce/src/Provider/TinyMCEProvider.php + + - + message: ''' + #^Call to deprecated method triggerEvent\(\) of interface Joomla\\CMS\\Application\\EventAwareInterface\: + 4\.0 will be removed in 6\.0 + Use the Dispatcher method instead + Example\: Factory\:\:getApplication\(\)\-\>getDispatcher\(\)\-\>dispatch\(\$eventName, \$event\);$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/editors/tinymce/src/Provider/TinyMCEProvider.php + + - + message: '#^Call to an undefined method Joomla\\CMS\\Layout\\FileLayout\:\:getOptionsFromField\(\)\.$#' + identifier: method.notFound + count: 1 + path: plugins/fields/checkboxes/tmpl/checkboxes.php + + - + message: '#^Call to an undefined method Joomla\\CMS\\Layout\\FileLayout\:\:getOptionsFromField\(\)\.$#' + identifier: method.notFound + count: 1 + path: plugins/fields/list/tmpl/list.php + + - + message: '#^Call to an undefined method Joomla\\CMS\\Layout\\FileLayout\:\:getOptionsFromField\(\)\.$#' + identifier: method.notFound + count: 1 + path: plugins/fields/radio/tmpl/radio.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/fields/sql/tmpl/sql.php + + - + message: '#^Call to an undefined method Joomla\\CMS\\Layout\\FileLayout\:\:getUserFactory\(\)\.$#' + identifier: method.notFound + count: 1 + path: plugins/fields/user/tmpl/user.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/filesystem/local/src/Adapter/LocalAdapter.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Plugin\\CMSPlugin\: + 5\.2 will be removed in 7\.0 + Plugin should use the language from Application, and only after the app is initialised\.$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/filesystem/local/src/Extension/Local.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/finder/categories/src/Extension/Categories.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Updater\\Update\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/installer/webinstaller/src/Extension/WebInstaller.php + + - + message: '#^Call to private method isRTL\(\) of class Joomla\\Plugin\\Installer\\Web\\Extension\\WebInstaller\.$#' + identifier: method.private + count: 1 + path: plugins/installer/webinstaller/tmpl/default.php + + - + message: ''' + #^Call to deprecated method getMailer\(\) of class Joomla\\CMS\\Factory\: + 4\.4\.0 will be removed in 6\.0 + Use the mailer service in the DI container and create a mailer from there + Example\: + Factory\:\:getContainer\(\)\-\>get\(MailerFactoryInterface\:\:class\)\-\>createMailer\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/multifactorauth/email/src/Extension/Email.php + + - + message: '#^Class Joomla\\CMS\\WebAuthn\\Server constructor invoked with 2 parameters, 3 required\.$#' + identifier: arguments.count + count: 1 + path: plugins/multifactorauth/webauthn/src/Helper/Credentials.php + + - + message: '#^Class Webauthn\\AuthenticatorSelectionCriteria does not have a constructor and must be instantiated without any parameters\.$#' + identifier: new.noConstructor + count: 1 + path: plugins/multifactorauth/webauthn/src/Helper/Credentials.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 8 + path: plugins/sampledata/blog/src/Extension/Blog.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\Table\\Table\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 4 + path: plugins/sampledata/blog/src/Extension/Blog.php + + - + message: ''' + #^Call to deprecated method get\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3\.0 will be removed in 6\.0 + Create a proper getter function for the property$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/sampledata/multilang/src/Extension/MultiLanguage.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 3 + path: plugins/sampledata/multilang/src/Extension/MultiLanguage.php + + - + message: ''' + #^Call to deprecated method getError\(\) of class Joomla\\CMS\\MVC\\Model\\BaseModel\: + 3\.1\.4 will be removed in 6\.0 + Will be removed without replacement + Catch thrown Exceptions instead of getError$# + ''' + identifier: method.deprecated + count: 10 + path: plugins/sampledata/testing/src/Extension/Testing.php + + - + message: ''' + #^Call to deprecated method register\(\) of class Joomla\\CMS\\HTML\\HTMLHelper\: + 4\.0 will be removed in 6\.0 + Use the service registry instead + HTMLHelper\:\:getServiceRegistry\(\)\-\>register\(\$key, \$function\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: plugins/system/actionlogs/src/Extension/ActionLogs.php + + - + message: ''' + #^Call to deprecated method getDispatcher\(\) of class Joomla\\Plugin\\System\\Cache\\Extension\\Cache\: + 5\.2 will be removed in 7\.0 + Plugin should implement DispatcherAwareInterface on its own, when it is needed\.$# + ''' + identifier: method.deprecated + count: 4 + path: plugins/system/cache/src/Extension/Cache.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/system/debug/src/DataCollector/LanguageErrorsCollector.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/system/debug/src/DataCollector/LanguageFilesCollector.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: plugins/system/debug/src/DataCollector/LanguageStringsCollector.php + + - + message: ''' + #^Call to deprecated method getUser\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Load the user service from the dependency injection container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getIdentity\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/system/debug/src/Storage/FileStorage.php + + - + message: ''' + #^Parameter \$item of method Joomla\\Plugin\\System\\GuidedTours\\Extension\\GuidedTours\:\:processTour\(\) has typehint with deprecated class Joomla\\CMS\\Object\\CMSObject\: + 4\.3 will be removed in 6\.0 + Use \\stdClass or \\Joomla\\Registry\\Registry instead\. + Example\: new \\Joomla\\Registry\\Registry\(\);$# + ''' + identifier: parameter.deprecatedClass + count: 1 + path: plugins/system/guidedtours/src/Extension/GuidedTours.php + + - + message: ''' + #^Call to deprecated method getDbo\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the database service in the DI container + Example\: + Factory\:\:getContainer\(\)\-\>get\(DatabaseInterface\:\:class\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/system/httpheaders/postinstall/introduction.php + + - + message: ''' + #^Call to deprecated method getDispatcher\(\) of class Joomla\\CMS\\Plugin\\CMSPlugin\: + 5\.2 will be removed in 7\.0 + Plugin should implement DispatcherAwareInterface on its own, when it is needed\.$# + ''' + identifier: method.deprecated + count: 2 + path: plugins/system/jooa11y/src/Extension/Jooa11y.php + + - + message: '#^Function processProps not found\.$#' + identifier: function.notFound + count: 2 + path: plugins/system/jooa11y/src/Extension/Jooa11y.php + + - + message: '#^Inner named functions are not supported by PHPStan\. Consider refactoring to an anonymous function, class method, or a top\-level\-defined function\. See issue \#165 \(https\://github\.com/phpstan/phpstan/issues/165\) for more details\.$#' + identifier: function.inner + count: 1 + path: plugins/system/jooa11y/src/Extension/Jooa11y.php + + - + message: ''' + #^Access to deprecated static property \$language of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticProperty.deprecated + count: 1 + path: plugins/system/languagefilter/src/Extension/LanguageFilter.php + + - + message: ''' + #^Call to deprecated method register\(\) of class JLoader\: + 4\.3 will be removed in 6\.0 + Classes should be autoloaded\. Use JLoader\:\:registerPrefix\(\) or JLoader\:\:registerNamespace\(\) to + register an autoloader for your files\.$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/system/languagefilter/src/Extension/LanguageFilter.php + + - + message: ''' + #^Call to deprecated method getDispatcher\(\) of class Joomla\\Plugin\\System\\Schemaorg\\Extension\\Schemaorg\: + 5\.2 will be removed in 7\.0 + Plugin should implement DispatcherAwareInterface on its own, when it is needed\.$# + ''' + identifier: method.deprecated + count: 4 + path: plugins/system/schemaorg/src/Extension/Schemaorg.php + + - + message: ''' + #^Call to deprecated method getDispatcher\(\) of class Joomla\\Plugin\\System\\Shortcut\\Extension\\Shortcut\: + 5\.2 will be removed in 7\.0 + Plugin should implement DispatcherAwareInterface on its own, when it is needed\.$# + ''' + identifier: method.deprecated + count: 1 + path: plugins/system/shortcut/src/Extension/Shortcut.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Cache\\Cache\: + 4\.2 will be removed in 6\.0 + Use the cache controller factory instead + Example\: Factory\:\:getContainer\(\)\-\>get\(CacheControllerFactoryInterface\:\:class\)\-\>createCacheController\(\$type, \$options\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/system/stats/src/Extension/Stats.php + + - + message: '#^Class Webauthn\\AuthenticatorSelectionCriteria does not have a constructor and must be instantiated without any parameters\.$#' + identifier: new.noConstructor + count: 1 + path: plugins/system/webauthn/src/Authentication.php + + - + message: ''' + #^Call to deprecated method register\(\) of class Joomla\\CMS\\HTML\\HTMLHelper\: + 4\.0 will be removed in 6\.0 + Use the service registry instead + HTMLHelper\:\:getServiceRegistry\(\)\-\>register\(\$key, \$function\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/system/webauthn/src/Extension/Webauthn.php + + - + message: ''' + #^Call to deprecated method forUnsecuredSigner\(\) of class Lcobucci\\JWT\\Configuration\: + Deprecated since v4\.3$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/system/webauthn/src/MetadataRepository.php + + - + message: '#^Instantiated class JConfig not found\.$#' + identifier: class.notFound + count: 1 + path: plugins/task/sitestatus/services/provider.php + + - + message: ''' + #^Call to deprecated method getInstance\(\) of class Joomla\\CMS\\Table\\Table\: + 4\.3 will be removed in 6\.0 + Use the MvcFactory instead + Example\: Factory\:\:getApplication\(\)\-\>bootComponent\('\.\.\.'\)\-\>getMVCFactory\(\)\-\>createTable\(\$name, \$prefix, \$config\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/task/updatenotification/src/Extension/UpdateNotification.php + + - + message: ''' + #^Access to deprecated static property \$language of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticProperty.deprecated + count: 3 + path: plugins/user/joomla/src/Extension/Joomla.php + + - + message: ''' + #^Call to deprecated method getSession\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the session service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getSession\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/user/joomla/src/Extension/Joomla.php + + - + message: ''' + #^Call to deprecated method register\(\) of class Joomla\\CMS\\HTML\\HTMLHelper\: + 4\.0 will be removed in 6\.0 + Use the service registry instead + HTMLHelper\:\:getServiceRegistry\(\)\-\>register\(\$key, \$function\);$# + ''' + identifier: staticMethod.deprecated + count: 4 + path: plugins/user/profile/src/Extension/Profile.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 2 + path: plugins/user/profile/src/Field/TosField.php + + - + message: ''' + #^Call to deprecated method getLanguage\(\) of class Joomla\\CMS\\Factory\: + 4\.3 will be removed in 6\.0 + Use the language service in the DI container or get from the application object + Example\: + Factory\:\:getApplication\(\)\-\>getLanguage\(\);$# + ''' + identifier: staticMethod.deprecated + count: 1 + path: plugins/user/terms/src/Field/TermsField.php + + - + message: '#^Access to an undefined property Joomla\\Plugin\\Workflow\\Featuring\\Extension\\Featuring\:\:\$app\.$#' + identifier: property.notFound + count: 2 + path: plugins/workflow/featuring/src/Extension/Featuring.php + + - + message: '#^Call to deprecated method singularize\(\) of class Doctrine\\Common\\Inflector\\Inflector\.$#' + identifier: staticMethod.deprecated + count: 1 + path: plugins/workflow/featuring/src/Extension/Featuring.php + + - + message: '#^Access to an undefined property Joomla\\Plugin\\Workflow\\Notification\\Extension\\Notification\:\:\$app\.$#' + identifier: property.notFound + count: 2 + path: plugins/workflow/notification/src/Extension/Notification.php + + - + message: '#^Access to an undefined property Joomla\\Plugin\\Workflow\\Publishing\\Extension\\Publishing\:\:\$app\.$#' + identifier: property.notFound + count: 2 + path: plugins/workflow/publishing/src/Extension/Publishing.php + + - + message: '#^Call to deprecated method singularize\(\) of class Doctrine\\Common\\Inflector\\Inflector\.$#' + identifier: staticMethod.deprecated + count: 1 + path: plugins/workflow/publishing/src/Extension/Publishing.php diff --git a/phpstan.neon b/phpstan.neon index e380fbe2bf67a..86031ba033864 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -1,5 +1,6 @@ includes: + - phpstan-baseline.neon - libraries/vendor/phpstan/phpstan-deprecation-rules/rules.neon - build/phpstan/phpstan.neon diff --git a/tests/phpunit-appveyor.xml.dist b/phpunit-windows.xml.dist similarity index 78% rename from tests/phpunit-appveyor.xml.dist rename to phpunit-windows.xml.dist index ecc9647091a51..1c19b644b4c9a 100644 --- a/tests/phpunit-appveyor.xml.dist +++ b/phpunit-windows.xml.dist @@ -1,22 +1,22 @@ - + - ./Unit + ./tests/Unit - ./Integration + ./tests/Integration - - + + - + diff --git a/plugins/quickicon/eos/src/Extension/Eos.php b/plugins/quickicon/eos/src/Extension/Eos.php index f87c5fccbaf0e..3e3505318b45a 100644 --- a/plugins/quickicon/eos/src/Extension/Eos.php +++ b/plugins/quickicon/eos/src/Extension/Eos.php @@ -38,7 +38,7 @@ final class Eos extends CMSPlugin implements SubscriberInterface * @var string * @since 4.4.0 */ - private const EOS_DATE = '2027-10-19'; + private const EOS_DATE = '2027-10-12'; /** * Load the language file on instantiation. @@ -189,7 +189,7 @@ private function getMessageInfo(int $monthsUntilEOS, int $inverted): array 'id' => 5, 'messageText' => 'PLG_QUICKICON_EOS_MESSAGE_ERROR_SUPPORT_ENDED', 'messageType' => 'error', - 'messageLink' => 'https://docs.joomla.org/Special:MyLanguage/Joomla_4.4.x_to_5.x_Planning_and_Upgrade_Step_by_Step', + 'messageLink' => 'https://docs.joomla.org/Special:MyLanguage/Joomla_5.4.x_to_6.x_Planning_and_Upgrade_Step_by_Step', 'snoozable' => false, ]; } @@ -200,7 +200,7 @@ private function getMessageInfo(int $monthsUntilEOS, int $inverted): array 'id' => 4, 'messageText' => 'PLG_QUICKICON_EOS_MESSAGE_WARNING_SUPPORT_ENDING', 'messageType' => 'warning', - 'messageLink' => 'https://docs.joomla.org/Special:MyLanguage/Joomla_4.4.x_to_5.x_Planning_and_Upgrade_Step_by_Step', + 'messageLink' => 'https://docs.joomla.org/Special:MyLanguage/Joomla_5.4.x_to_6.x_Planning_and_Upgrade_Step_by_Step', 'snoozable' => true, ]; } @@ -211,7 +211,7 @@ private function getMessageInfo(int $monthsUntilEOS, int $inverted): array 'id' => 3, 'messageText' => 'PLG_QUICKICON_EOS_MESSAGE_WARNING_SECURITY_ONLY', 'messageType' => 'warning', - 'messageLink' => 'https://docs.joomla.org/Special:MyLanguage/Joomla_4.4.x_to_5.x_Planning_and_Upgrade_Step_by_Step', + 'messageLink' => 'https://docs.joomla.org/Special:MyLanguage/Joomla_5.4.x_to_6.x_Planning_and_Upgrade_Step_by_Step', 'snoozable' => true, ]; } @@ -233,7 +233,7 @@ private function getMessageInfo(int $monthsUntilEOS, int $inverted): array 'id' => 1, 'messageText' => 'PLG_QUICKICON_EOS_MESSAGE_INFO_01', 'messageType' => 'info', - 'messageLink' => 'https://joomla.org/5', + 'messageLink' => 'https://joomla.org/6', 'snoozable' => true, ]; } diff --git a/plugins/system/debug/src/Extension/Debug.php b/plugins/system/debug/src/Extension/Debug.php index 58ea37b5e8bbb..924d957b70bd4 100644 --- a/plugins/system/debug/src/Extension/Debug.php +++ b/plugins/system/debug/src/Extension/Debug.php @@ -344,11 +344,12 @@ public function onAfterRespond(AfterRespondEvent|ApplicationEvent $event): void } $debugBarRenderer = new JavascriptRenderer($this->debugBar, Uri::root(true) . '/media/vendor/debugbar/'); - $openHandlerUrl = Uri::base(true) . '/index.php?option=com_ajax&plugin=debug&group=system&format=raw&action=openhandler'; - $openHandlerUrl .= '&' . ($formToken ?? Session::getFormToken()) . '=1'; - - $debugBarRenderer->setOpenHandlerUrl($openHandlerUrl); + if ($this->params->get('track_request_history', false)) { + $openHandlerUrl = Uri::base(true) . '/index.php?option=com_ajax&plugin=debug&group=system&format=raw&action=openhandler'; + $openHandlerUrl .= '&' . ($formToken ?? Session::getFormToken()) . '=1'; + $debugBarRenderer->setOpenHandlerUrl($openHandlerUrl); + } /** * @todo disable highlightjs from the DebugBar, import it through NPM * and deliver it through Joomla's API diff --git a/plugins/system/languagefilter/src/Extension/LanguageFilter.php b/plugins/system/languagefilter/src/Extension/LanguageFilter.php index 7b085bf49decd..477cfc1dc2a44 100644 --- a/plugins/system/languagefilter/src/Extension/LanguageFilter.php +++ b/plugins/system/languagefilter/src/Extension/LanguageFilter.php @@ -699,6 +699,17 @@ public function onUserLogin(LoginEvent $event): void $app->setUserState('users.login.form.return', 'index.php?Itemid=' . $associationItemid); $foundAssociation = true; } + } elseif ($this->mode_sef) { + if ($app->getUserState('users.login.form.return')) { + $app->setUserState( + 'users.login.form.return', + Route::_( + $app->getUserState('users.login.form.return'), + false + ) + ); + $foundAssociation = true; + } } elseif (isset($associations[$lang_code]) && $menu->getItem($associations[$lang_code])) { /** * The login form does not contain a menu item redirection. diff --git a/tests/System/exclude.txt b/tests/System/exclude.txt index f9f6c592d43b6..20d9ef17039a7 100644 --- a/tests/System/exclude.txt +++ b/tests/System/exclude.txt @@ -3,7 +3,6 @@ build dev node_modules -.appveyor.yml .drone.yml .editorconfig .gitignore diff --git a/tests/System/integration/administrator/components/com_users/Mfa.cy.js b/tests/System/integration/administrator/components/com_users/Mfa.cy.js index 040d92756781c..5c06f44af81b4 100644 --- a/tests/System/integration/administrator/components/com_users/Mfa.cy.js +++ b/tests/System/integration/administrator/components/com_users/Mfa.cy.js @@ -1,8 +1,8 @@ import { TOTP } from 'totp-generator'; -afterEach(() => cy.db_getUserId().then((uid) => cy.task('queryDB', `DELETE FROM #__user_mfa WHERE user_id = ${uid}`))); - describe('Test in backend that the user', () => { + afterEach(() => cy.db_getUserId().then((uid) => cy.task('queryDB', `DELETE FROM #__user_mfa WHERE user_id = ${uid}`))); + it('can login with Multi-factor Authentication (email)', () => { cy.doAdministratorLogin(); cy.visit('/administrator/index.php?option=com_users&view=users'); @@ -80,6 +80,44 @@ describe('Test in backend that the user', () => { cy.get('#com-users-methods-reset-message').contains('not enabled'); }); + it('can login with Multi-factor Authentication (passkey)', { browser: '!firefox' }, () => { + Cypress.automation('remote:debugger:protocol', { command: 'WebAuthn.enable', params: {} }).then(() => { + Cypress.automation('remote:debugger:protocol', { + command: 'WebAuthn.addVirtualAuthenticator', + params: { + options: { + protocol: 'ctap2', transport: 'internal', hasResidentKey: true, hasUserVerification: true, isUserVerified: true, + }, + }, + }); + }); + cy.doAdministratorLogin(); + cy.visit('/administrator/index.php?option=com_users&view=users'); + cy.get('.header-profile:visible').click(); + cy.get('.header-profile a.dropdown-item').contains('Edit Account').click(); + cy.get('#myTab div[role="tablist"] button[aria-controls="multifactorauth"]').click(); + cy.get('.com-users-methods-list-method-name-webauthn a.com-users-methods-list-method-addnew').click(); + cy.get('#com-users-method-edit-title').clear().type('Test Passkey'); + cy.get('#toolbar-user-mfa-edit-save').click(); + cy.get('.com-users-methods-list-method-name-webauthn .com-users-methods-list-method-record').contains('Test Passkey'); + cy.clickToolbarButton('Cancel'); + cy.doAdministratorLogout(); + cy.get('#mod-login-username').type(Cypress.env('username')); + cy.get('#mod-login-password').type(Cypress.env('password')); + cy.get('#form-login').submit(); + cy.get('#users-mfa-title').contains('Passkey'); + cy.get('#toolbar-user-mfa-submit').click(); + cy.visit('/administrator/index.php?option=com_users&view=users'); + cy.get('.header-profile:visible').click(); + cy.get('.header-profile a.dropdown-item').contains('Edit Account').click(); + cy.get('#myTab div[role="tablist"] button[aria-controls="multifactorauth"]').click(); + cy.get('#com-users-methods-reset-message').contains('is enabled'); + cy.get('.com-users-methods-list-method-name-webauthn a.com-users-methods-list-method-record-delete').click(); + cy.on('window:confirm', (text) => expect(text).to.contains('Are you sure you want to delete?')); + cy.get('#com-users-methods-reset-message').contains('not enabled'); + cy.then(() => Cypress.automation('remote:debugger:protocol', { command: 'WebAuthn.disable', params: {} })); + }); + it('can login with Multi-factor Authentication (backup codes)', () => { cy.doAdministratorLogin(); cy.visit('/administrator/index.php?option=com_users&view=users'); diff --git a/tests/System/integration/install/Installation.cy.js b/tests/System/integration/install/Installation.cy.js index fd3f1ccc6088b..844ce5085097d 100644 --- a/tests/System/integration/install/Installation.cy.js +++ b/tests/System/integration/install/Installation.cy.js @@ -28,9 +28,6 @@ describe('Install Joomla', () => { cy.setErrorReportingToDevelopment(); cy.doAdministratorLogout(); - // Update to the correct secret for the API tests because of the bearer token - cy.config_setParameter('secret', 'tEstValue'); - // Setup mailing cy.config_setParameter('mailonline', true); cy.config_setParameter('mailer', 'smtp'); diff --git a/tests/System/integration/site/components/com_config/Templates.cy.js b/tests/System/integration/site/components/com_config/Templates.cy.js index 85e659c511f42..9af90d7b868d7 100644 --- a/tests/System/integration/site/components/com_config/Templates.cy.js +++ b/tests/System/integration/site/components/com_config/Templates.cy.js @@ -1,4 +1,4 @@ -describe('Test in frontend that the config config view', () => { +describe('Test in frontend that the config templates view', () => { beforeEach(() => cy.doFrontendLogin()); it('can edit template settings without menu item', () => { diff --git a/tests/System/integration/site/components/com_users/Mfa.cy.js b/tests/System/integration/site/components/com_users/Mfa.cy.js index 91790661a79ea..7712d712ab4d0 100644 --- a/tests/System/integration/site/components/com_users/Mfa.cy.js +++ b/tests/System/integration/site/components/com_users/Mfa.cy.js @@ -1,8 +1,8 @@ import { TOTP } from 'totp-generator'; -afterEach(() => cy.db_getUserId().then((uid) => cy.task('queryDB', `DELETE FROM #__user_mfa WHERE user_id = ${uid}`))); - describe('Test in frontend that the user', () => { + afterEach(() => cy.db_getUserId().then((uid) => cy.task('queryDB', `DELETE FROM #__user_mfa WHERE user_id = ${uid}`))); + it('can login with Multi-factor Authentication (email)', () => { cy.doFrontendLogin(); cy.visit('/index.php?option=com_users&view=profile&layout=edit'); @@ -66,6 +66,37 @@ describe('Test in frontend that the user', () => { cy.get('#com-users-methods-reset-message').contains('not enabled'); }); + it('can login with Multi-factor Authentication (passkey)', { browser: '!firefox' }, () => { + Cypress.automation('remote:debugger:protocol', { command: 'WebAuthn.enable', params: {} }).then(() => { + Cypress.automation('remote:debugger:protocol', { + command: 'WebAuthn.addVirtualAuthenticator', + params: { + options: { + protocol: 'ctap2', transport: 'internal', hasResidentKey: true, hasUserVerification: true, isUserVerified: true, + }, + }, + }); + }); + cy.doFrontendLogin(); + cy.visit('/index.php?option=com_users&view=profile&layout=edit'); + cy.get('.com-users-methods-list-method-name-webauthn a.com-users-methods-list-method-addnew').click(); + cy.get('#com-users-method-edit-title').clear().type('Test Passkey'); + cy.get('#com-users-method-edit button.multifactorauth_webauthn_setup').click(); + cy.get('.com-users-methods-list-method-name-webauthn .com-users-methods-list-method-record').contains('Test Passkey'); + cy.doFrontendLogout(); + cy.get('form.mod-login input[name="username"]').type(Cypress.env('username')); + cy.get('form.mod-login input[name="password"]').type(Cypress.env('password')); + cy.get('form.mod-login').submit(); + cy.get('#users-mfa-title').contains('Passkey'); + cy.get('#users-mfa-captive-button-submit').click(); + cy.visit('/index.php?option=com_users&view=profile&layout=edit'); + cy.get('#com-users-methods-reset-message').contains('is enabled'); + cy.get('.com-users-methods-list-method-name-webauthn a.com-users-methods-list-method-record-delete').click(); + cy.on('window:confirm', (text) => expect(text).to.contains('Are you sure you want to delete?')); + cy.get('#com-users-methods-reset-message').contains('not enabled'); + cy.then(() => Cypress.automation('remote:debugger:protocol', { command: 'WebAuthn.disable', params: {} })); + }); + it('can login with Multi-factor Authentication (backup codes)', () => { cy.doFrontendLogin(); cy.visit('/index.php?option=com_users&view=profile&layout=edit'); diff --git a/tests/System/support/commands/api.mjs b/tests/System/support/commands/api.mjs index f2067c7c805a1..938e101168e28 100644 --- a/tests/System/support/commands/api.mjs +++ b/tests/System/support/commands/api.mjs @@ -15,30 +15,20 @@ Cypress.Commands.add('api_patch', (path, body) => cy.api_getBearerToken().then(( Cypress.Commands.add('api_delete', (path) => cy.api_getBearerToken().then((token) => cy.request({ method: 'DELETE', url: `/api/index.php/v1${path}`, headers: { Authorization: `Bearer ${token}` } }))); -Cypress.Commands.add('api_getBearerToken', () => cy.task('queryDB', "SELECT id FROM #__users WHERE username = 'api'").then((user) => { - if (user.length > 0) { - return 'c2hhMjU2OjM6ZTJmMjJlYTNlNTU0NmM1MDJhYTIzYzMwN2MxYzAwZTQ5NzJhMWRmOTUyNjY5MTk2YjE5ODJmZWMwZTcxNzgwMQ=='; - } - - return cy.db_createUser({ - id: 3, - name: 'API', - email: 'api@example.com', - username: 'api', - password: '123', - block: 0, - registerDate: '2000-01-01', - params: '{}', - group_id: 8, - }).then((id) => { - cy.task( - 'queryDB', - 'INSERT INTO #__user_profiles (user_id, profile_key, profile_value) VALUES ' - + `('${id}', 'joomlatoken.token', 'dOi2m1NRrnBHlhaWK/WWxh3B5tqq1INbdf4DhUmYTI4=')`, - ); - return cy.task( - 'queryDB', - `INSERT INTO #__user_profiles (user_id, profile_key, profile_value) VALUES ('${id}', 'joomlatoken.enabled', 1)`, - ); - }).then(() => 'c2hhMjU2OjM6ZTJmMjJlYTNlNTU0NmM1MDJhYTIzYzMwN2MxYzAwZTQ5NzJhMWRmOTUyNjY5MTk2YjE5ODJmZWMwZTcxNzgwMQ=='); -})); +Cypress.Commands.add('api_getBearerToken', () => { + cy.session('apiToken', () => { + cy.db_getUserId().then((uid) => { + cy.doAdministratorLogin(); + cy.visit(`/administrator/index.php?option=com_users&task=user.edit&id=${uid}#attrib-joomlatoken`); + cy.get('#fieldset-joomlatoken').then((fieldset) => { + if (fieldset.find('#jform_joomlatoken_reset1').length > 0) { + cy.get('#jform_joomlatoken_reset1').click(); + } + }); + cy.clickToolbarButton('Save'); + cy.get('#jform_joomlatoken_token').invoke('val').then((token) => { + window.localStorage.setItem('authToken', token); + }); + }); + }).then(() => window.localStorage.getItem('authToken')); +}); diff --git a/tests/Unit/Libraries/Cms/Html/HtmlStringTest.php b/tests/Unit/Libraries/Cms/Html/HtmlStringTest.php index 97f50b743f4d1..4d41bbace1714 100644 --- a/tests/Unit/Libraries/Cms/Html/HtmlStringTest.php +++ b/tests/Unit/Libraries/Cms/Html/HtmlStringTest.php @@ -328,7 +328,7 @@ public function getTestTruncateComplexData(): array 'Plain text', 8, true, - 'Plain...', + 'Plain...', ], /* * @todo: Check these tests: 'Plain html over the limit splitting first word' @@ -366,13 +366,13 @@ public function getTestTruncateComplexData(): array '
Plain text foo
', 8, false, - '
Plain te
...', + '
Plain te...
', ], 'No split' => [ '
Plain text foo
', 8, true, - '
Plain
...', + '
Plain...
', ], 'First character is < with a maximum length of 1, no split' => [ '
Plain text foo
',