如何将构造函数属性提升与扩展类一起使用?

How to use constructor property promotion with extend class?

提问人:GCS 提问时间:10/6/2023 更新时间:10/6/2023 访问量:46

问:

有人可以告诉我是否可以将“构造函数属性升级”与扩展子类一起使用?

请参阅下面的构造函数;它有一个父类。我们可以为此构造函数使用“构造函数属性提升”吗?

    public function __construct(
        \Magento\Framework\Data\Collection\EntityFactoryInterface $entityFactory,
        \Psr\Log\LoggerInterface $logger,
        \Magento\Framework\Data\Collection\Db\FetchStrategyInterface $fetchStrategy,
        ManagerInterface $eventManager, 
        \Magento\Framework\DB\Adapter\AdapterInterface $connection = null,
        \Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource = null
    ) {
        parent::__construct($entityFactory, $logger, $fetchStrategy, $eventManager, $connection, $resource);
    }

问候

Magento2 PHP-8

评论


答: 暂无答案