I have 2 classes - A and B both should use config file from .ini or .php . and both have method call post to get smth from diffrent api what is the best way to design it ?
Do I need to use abstact an put the config in his constructor . ? I will be able to get the config with just call $this->config?
for example:
abstract class parent
{
constructor()
{
$this->config = "get file";
}
}
class a extends parent {
...
how to use $this->conifg ?
}
thx a lot