承接 macopedia/phpstan-magento1 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

macopedia/phpstan-magento1

Composer 安装命令:

composer require macopedia/phpstan-magento1

包简介

Extension for PHPStan to allow analysis of Magento 1 code.

README 文档

README

Extension for PHPStan to allow analysis of Magento 1 code. It doesn't require db connection to run.

Usage

Add phpstan.neon to your Magento 1/OpenMage project.

Make sure it has

includes:
    - vendor/macopedia/phpstan-magento1/extension.neon

Then run

composer require --dev macopedia/phpstan-magento1

Alternative Magento path

By default this extension assumes the Magento directory is %currentWorkingDirectory%/htdocs. You can adapt the path by changing the magentoRootPath parameter in the phpstan.neon file. Add to the project's phpstan.neon:

parameters:
    magentoRootPath: %currentWorkingDirectory%/htdocs

Example configuration file for analysing Magento Module

includes:
    - vendor/macopedia/phpstan-magento1/extension.neon
parameters:
    magentoRootPath: %currentWorkingDirectory%/htdocs
    paths:
        #lets start small with just our extensions
        - %currentWorkingDirectory%/app/code/local/VendorName/ModuleName
    excludePaths:
        - */Vendor/ModuleName/SomePathToExclude/*
    level: 0

Known Issues

Data/SQL scripts can't be tested

Since these scripts use a presumed $this variable due to being included from a setup class, work is needed to:

  • work out the correct setup class
  • somehow make phpstan aware of it for the file

Magento fluent interface classes aren't fluent for sub-classes

This causes subsequent calls to the class object to assume the scope of the super-class that defined the return type.

This is due to their PHPDoc not using the up to date way of specifying fluency with subclasses using $this as the type.

Options to resolve:

  • Avoid using the fluent interface on these classes
  • Patch Magento code to use $this as the return type
  • Define @method PHPDoc for the called methods in the subclass
  • Add the error to the parameters.ignoreErrors phpstan configuration to ignore it - this loses the ability to properly type the subseqent methods of the fluent interface

Mage_Core_Model_Abstract::load $id is not an integer

This is due to an inadequate PHPDoc of the load method of the Mage_Core_Model_Abstract class. It should have used a "mixed" type to support when a field is specified as the 2nd argument.

PHPStan extensions have no way of altering existing method parameters.

Options to resolve:

  • Patch the Magento code to use mixed as the $id parameter type
  • If available in the chain of super-classes, use the loadBy{Field} method, which has the correct parameter typing
  • Define @method PHPDoc in your class (which extends Mage_Core_Model_Abstract or a subclass of it) with the correct parameter types
  • Add the error to the parameters.ignoreErrors phpstan configuration to ignore it

macopedia/phpstan-magento1 适用场景与选型建议

macopedia/phpstan-magento1 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 423.28k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2021 年 09 月 27 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 macopedia/phpstan-magento1 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 macopedia/phpstan-magento1 我们能提供哪些服务?
定制开发 / 二次开发

基于 macopedia/phpstan-magento1 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 423.28k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 19
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 4
  • Watchers: 2
  • Forks: 8
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-09-27