P粉0869937882023-09-06 18:46:06
如果你想實作多型方法,最好建立儲存庫或僅用於管理該邏輯的東西。
這是範例。
class SampleRepository { /** * repository instance value * * @var string[] | null */ private $sampleArray; // maybe here is SEASON or EXPIRY or null /** * constructor * * @param string[] | null $sampleArray */ public function __construct($sampleArray) { $this->sampleArray = $sampleArray; } /** * execute like class interface role * * @return array */ public function execute() { return (!$this->sampleArray) ? [] : $this->getResult(); } /** * get result * * @return array */ private function getResult() { // maybe pattern will be better to manage another class or trait. $pattern = [ "SEASON" => new Season(), "EXPIRY" => new Expiry() ]; return collect($this->sampleArray)->map(function($itemKey){ $requestClass = data_get($pattern,$itemKey); if (!$requestClass){ // here is space you don't expect class or canIt find correct class return ["something wrong"]; } return $requestClass->execute(); })->flatten(); } }
你可以這樣呼叫。
$sampleRepository = new SampleRepository($sampleValue); // expect string[] or null like ["SEASON"],["SEASON","EXPIRY"],null $result = $sampleRepository->execute(); // [string] or [string,string] or []
此方法僅適用於您的參數指定值。 如果Season類別和Expiry類別的回傳結果幾乎相同,那麼最好在trait上進行管理。 (即範例程式碼中的 $pattern)
嘗試一些。
我讀了評論,所以關注..
例如,它更願意只取得 getResult() 的結果。 因此,某些模式和如此多的邏輯不應該寫在 getResult() 上;
如果您使用特徵,這是一個範例。 首先,您需要建立管理行為類別。
行為.php
<?php namespace App\Repositories; class Behavior { use Behavior\BehaviorTrait; // if you need to add another pattern, you can add trait here. }
然後,您需要在同級位置建立Behavior目錄。 你移動該目錄,你就創建了這樣的特徵檔。
<?php namespace App\Repositories\Behavior; trait BehaviorTrait { public static function findAccessibleClass(string $itemKey) { return data_get([ "SEASON" => new Season(), "EXPIRY" => new Expiry() ],$itemKey); } }
findAccessibleClass() 方法負責找出正確的類別。
然後,你可以像這樣呼叫這個方法。
private function getResult() { return collect($this->sampleArray)->map(function($itemKey){ $requestClass = Behavior::findAccessibleClass($itemKey); // fix here. if (!$requestClass){ // here is space you don't expect class or canIt find correct class return ["something wrong"]; } return $requestClass->execute(); })->flatten(); }
如果 getResult() 中的程式碼太多,最好將負責的程式碼分開。
要建立Behavior Trait,getResult不需要負責行為邏輯。簡而言之,它將很容易測試或修復。
希望一切順利。