Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plugin/Abstract.phpでの$this->configの扱い #3

Closed
DQNEO opened this issue Jun 15, 2013 · 1 comment
Closed

Plugin/Abstract.phpでの$this->configの扱い #3

DQNEO opened this issue Jun 15, 2013 · 1 comment

Comments

@DQNEO
Copy link
Member

DQNEO commented Jun 15, 2013

背景

https://github.com/DQNEO/ethnam/blob/ethna_junction/class/Plugin/Abstract.php
において、
配列の$this->configというプロパティが宣言されている。

    /** @protected    array   plugin configure */
    protected $config;

これは問題点が3つある。

  • もともとプラグインの$this->configはEthna_Configオブジェクトを格納していた。同じ名前のまま中身がArrayに変わってしまうと、後方互換が崩れる
  • $configは慣習的にEthna_Configを指すので、ここだけArrayだと混乱のもとになる。
  • 実際にはPlugin/Cachemanager*でしか使われていない。

改善案

ソースコードが無駄に複雑になってしまっているので、
class/Plugin/Abstract.phpには実装せず、
class/Plugin/Cachemanager.phpに実装する。

また、名称を$this->configではなく$this->optとする。

@DQNEO
Copy link
Member Author

DQNEO commented Jun 15, 2013

完了した!!
Plugin/Abstract.phpは廃止した。

@DQNEO DQNEO closed this as completed Jun 15, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant