注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
<?php class SimpleContainer { /** * @var \Closure[] 依存解決手続き格納用メンバ */ private $resolv... <?php class SimpleContainer { /** * @var \Closure[] 依存解決手続き格納用メンバ */ private $resolveMethodList; /** * SimpleContainer コンストラクタ */ public function __construct() { // 初期化 $this->resolveMethodList = []; } /** * 抽象に対し具象の解決手続きを登録する * * @param string $abstract 抽象 * @param Closure $resolveMethod 対応する解決手続き * @return $this */ public function register(string $abstract, \Closure $resolveMethod) { $this->reso
2018/02/12 リンク