7e3f38b2c1
Universal: PR Check / Branch Policy (pull_request) Successful in 2s
Joomla: Extension CI / Release Readiness Check (pull_request) Failing after 5s
Universal: PR Check / Secret Scan (pull_request) Successful in 5s
Universal: PR Check / Validate PR (pull_request) Failing after 4s
Generic: Repo Health / Site Health (pull_request) Has been skipped
Generic: Repo Health / Access control (pull_request) Successful in 2s
Joomla: Extension CI / Lint & Validate (pull_request) Failing after 45s
Joomla: Metadata Validation / Validate Joomla Metadata (pull_request) Successful in 52s
Universal: Auto Version Bump / Version Bump (push) Successful in 12s
Universal: Pre-Release / Build Pre-Release (${{ inputs.stability || github.ref_name }}) (push) Successful in 14s
Joomla: Extension CI / Tests (PHP 8.2) (pull_request) Has been cancelled
Joomla: Extension CI / Tests (PHP 8.3) (pull_request) Has been cancelled
Joomla: Extension CI / PHPStan Analysis (pull_request) Has been cancelled
Joomla: Extension CI / Build RC Pre-Release (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Universal: PR Check / Report Issues (pull_request) Has been cancelled
Generic: Repo Health / Scripts governance (pull_request) Has been cancelled
Generic: Repo Health / Repository health (pull_request) Has been cancelled
Generic: Repo Health / Report Issues (pull_request) Has been cancelled
21 lines
740 B
Plaintext
21 lines
740 B
Plaintext
# Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# FILE INFORMATION
|
|
# DEFGROUP: Config.StaticAnalysis
|
|
# INGROUP: Development
|
|
# BRIEF: PHPStan configuration for Joomla extension static analysis
|
|
|
|
parameters:
|
|
level: 5
|
|
paths:
|
|
- src
|
|
scanDirectories:
|
|
# Joomla framework stubs (if available)
|
|
- vendor/joomla
|
|
ignoreErrors:
|
|
# Joomla service-container architecture: Factory/Container returns mixed
|
|
- '#Call to an undefined method Joomla\\CMS\\Application\\.*::get#i'
|
|
- '#Call to method .* on an unknown class Joomla\\Cms\\Extension\\.*#'
|
|
# Joomla MVC pattern: Table::getInstance returns Table|bool
|
|
- '#Method Joomla\\CMS\\Table\\Table::getInstance#'
|