簡體   English   中英

依賴注入在PHP中的正確方法-Laravel

[英]Dependency Injection the right way in Php - Laravel

我有一個如下所示的日志類,我想將以下類注入到我的控制器中並進行日志:

Log.php

<?php

namespace App\Helpers;

use DB;


class Log {

    private $tableName;
    private $tableId;
    private $tableIdVal;
    private $step;
    private $status;
    private $error;

    public function __construct($logTableName, $logTableId, $logTableIdVal, $step, $status, $error = null) {

        $this->tableName = $logTableName;
        $this->tableId   = $logTableId;
        $this->tableIdVal= $logTableIdVal;
        $this->step      = $step;
        $this->status    = $status;
        $this->error     = $error;

    }

    protected function create() {

        DB::table($this->tableName)->insert(
            [
                $this->tableId  =>  $this->tableIdVal,
                'step'          =>  $this->step,
                'error'         =>  $this->error,
                'status'        =>  $this->status
            ]
        );
    }

}

Testcontroller.php

<?php

namespace App\Http\Controllers;

use App\Helpers\{Load, Log};
use App\Models\{Post, Raw, RawDetail};

use DB;

class DetailsController extends Controller
{
    private $file;
    private $log;

    public function __construct($record, Log $logger) {

        $this->file = $record;
        $this->log  = $logger;
    }

public function process() {

        //make a log (is this correct?) I think $this->log will find a log method in this file, which does not exist.
        //I want to simple make a call to the constructor and then call create method on it.
        $this->log('raw_logs', 'raw_id', $this->file->id, Raw::STEP_1, Raw::STATUS_1);

如果我使用依賴注入,該如何做?

我可以像下面這樣:

$log = new Log($all-params-here);
$log->create();

但我要避免使用new。

我想做的事。

$this->log($parameters)->create();
  1. 您可以像@HtmHell一樣在注釋中說: $this->log->create(parameters);
  2. 您可以創建方法鏈接,例如: $this->log->setData($parameters)->create();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM