php构造函数参数没传递,php – 向构造函数注入几个参数是不好的做法?

我正在开发一个相当复杂的物流管理系统,该系统将继续发展成其他几个与ERP相关的模块.因此,我正在努力实现尽可能多的SRP和开放/封闭原则,以便于扩展和基于域的管理.

因此,我决定使用Laravel和以下模式(不确定它是否有名称):

我将使用PRODUCT对象作为我的示例.

对象/实体/域具有类

class ProductService {}

此类有一个服务提供程序,它包含在providers数组中,并且也是自动加载的:

ProductServiceServiceProvider

服务提供者实例化(生成)作为接口的ProductRepository.

该接口当前有一个名为EloquentProductRepository实现的MySQL(和一些Eloquent),ProductRepositoryServiceProvider绑定了也加载的实现,并且在providers数组中.

现在,产品与其他域有许多不同的属性和关系,因为其他域(或实体)需要完全分离并再次遵守上述原则(SRP等).我决定对它们也有相同的结构.我为产品做的…我知道有些人可能认为这太多了,但我们需要让系统非常可扩展,说实话我喜欢有条理并且有一个统一的模式(它不需要更多时间,并节省了我很多).

我的问题是这个.处理Product的所有业务逻辑并使“Product”成为现实的ProductService将通过构造函数在创建它的实例时注入几个依赖项.

这就是它目前所拥有的:

namespace Ecommerce\Services\Product;

use Ecommerce\Repositories\Product\ProductRepository;

use Ecommerce\Services\ShopEntity\ShopEntityDescriptionService;

use Content\Services\Entity\EntitySEOService;

use Content\Services\Entity\EntitySlugService;

use Ecommerce\Services\Tax\TaxService;

use Ecommerce\Services\Product\ProductAttributeService;

use Ecommerce\Services\Product\ProductCustomAttributeService;

use Ecommerce\Services\Product\ProductVolumeDiscountService;

use Ecommerce\Services\Product\ProductWeightAttributeService;

use Ecommerce\Services\Product\ProductDimensionAttributeService;

/**

* Class ProductService

* @package Ecommerce\Services\Product

*/

class ProductService {

/**

* @var ProductRepository

*/

protected $productRepo;

/**

* @var ShopEntityDescriptionService

*/

protected $entityDescription;

/**

* @var EntitySEOService

*/

protected $entitySEO;

/**

* @var EntitySlugService

*/

protected $entitySlug;

/**

* @var TaxService

*/

protected $tax;

/**

* @var ProductAttributeService

*/

protected $attribute;

/**

* @var ProductCustomAttributeService

*/

protected $customAttribute;

/**

* @var ProductVolumeDiscountService

*/

protected $volumeDiscount;

/**

* @var ProductDimensionAttributeService

*/

protected $dimension;

/**

* @var ProductWeightAttributeService

*/

protected $weight;

/**

* @var int

*/

protected $entityType = 3;

public function __construct(ProductRepository $productRepo,ShopEntityDescriptionService $entityDescription,EntitySEOService $entitySEO,EntitySlugService $entitySlug,TaxService $tax,ProductAttributeService $attribute,ProductCustomAttributeService $customAttribute,ProductVolumeDiscountService $volumeDiscount,ProductDimensionAttributeService $dimension,ProductWeightAttributeService $weight)

{

$this->productRepo = $productRepo;

$this->entityDescription = $entityDescription;

$this->entitySEO = $entitySEO;

$this->entitySlug = $entitySlug;

$this->tax = $tax;

$this->attribute = $attribute;

$this->customAttribute = $customAttribute;

$this->volumeDiscount = $volumeDiscount;

$this->dimension = $dimension;

$this->weight = $weight;

}

`

将尽可能多的参数传递给PHP中的构造函数是不好的做法(请忽略服务的长名称,因为这些名称在确定ERP名称空间时可能会发生变化)?

正如下面Ben所回答的,在这种情况下它不是.我的问题与OOP无关,但更多与性能等有关.原因在于,这个特殊的类ProductService是web deves用控制器做的事情,即他们可能(并且反对原则)在一个ProductController中添加所有数据库关系.处理存储库服务(db等..)并附加关系,然后突然变成你的业务逻辑.

在我的应用程序中(我以这种方式看到大多数应用程序),Web层只是另一层. MVC负责Web层,有时也处理其他Apis,但除了与MVC中的视图和JS框架相关之外,我不会有任何逻辑.所有这一切都在我的软件中.

总结:我知道这是一个非常SOLID的设计,依赖注入并且它们确实是依赖关系(即产品必须有税,产品确实有重量等等)并且它们可以很容易地与其他类交换,这要归功于接口和ServiceProviders.现在感谢答案,我也知道在构造函数中注入这么多依赖项是可以的.

我最后会写一篇关于我使用的设计模式以及为什么我在不同场景中使用它们的文章,所以如果你对此感兴趣,请关注我.

感谢大家

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值