Skip to content

Commit

Permalink
php 8.2 - dynamic property fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mvenghaus committed Mar 15, 2023
1 parent 5f563cc commit 1571162
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Model/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ class Config
const XML_INCLUDE_BLOG_CSS_HOME_PAGE = 'mfblog/developer/css_settings/include_home_page';
const XML_INCLUDE_BLOG_CSS_PRODUCT_PAGES = 'mfblog/developer/css_settings/include_product_page';

/**
* @var ScopeConfigInterface
*/
protected ScopeConfigInterface $scopeConfig;

/**
* Config constructor.
* @param ScopeConfigInterface $scopeConfig
Expand Down
5 changes: 5 additions & 0 deletions Model/ResourceModel/Category/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\Ab
*/
protected $_storeId;

/**
* @var bool
*/
protected $_previewFlag;

/**
* @param \Magento\Framework\Data\Collection\EntityFactory $entityFactory
* @param \Psr\Log\LoggerInterface $logger
Expand Down
5 changes: 5 additions & 0 deletions Model/ResourceModel/Post/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\Ab
*/
protected $categoryRepository;

/**
* @var bool
*/
protected $_previewFlag;

/**
* @param \Magento\Framework\Data\Collection\EntityFactory $entityFactory
* @param \Psr\Log\LoggerInterface $logger
Expand Down

0 comments on commit 1571162

Please sign in to comment.