https://github.com/owncloud/core
Raw File
Tip revision: 035e36469cedd690a325342fcccd0d16e8d9e3fc authored by Juergen Weigert on 19 February 2024, 13:14:09 UTC
build: prepare 10.14.0-rc.1
Tip revision: 035e364
phpstan.neon
parameters:
  bootstrapFiles:
    - %currentWorkingDirectory%/lib/base.php
  excludePaths:
    analyseAndScan:
      - %currentWorkingDirectory%/core/ajax/update.php
      - %currentWorkingDirectory%/apps/*/tests*
      - %currentWorkingDirectory%/settings/templates/*
    analyse:
      - %currentWorkingDirectory%/apps/*/composer/*
      - %currentWorkingDirectory%/apps/*/3rdparty/*
  ignoreErrors:
    # errors below are to be addressed by own pull requests - non trivial changes required
    - '#Instantiated class OCA\\Encryption\\Crypto\\Crypt not found.#'
    - '#Instantiated class OCA\\Encryption\\Util not found.#'
    - '#Instantiated class OCA\\Encryption\\KeyManager not found.#'
    - '#Instantiated class OCA\\Encryption\\Session not found.#'
    - '#Instantiated class OCA\\Encryption\\Recovery not found.#'

back to top