update config
This commit is contained in:
parent
006e24a117
commit
c3f8a48357
@ -6,13 +6,14 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
namespace QL;
|
namespace QL;
|
||||||
|
use Closure;
|
||||||
|
|
||||||
class Config
|
class Config
|
||||||
{
|
{
|
||||||
protected static $instance = null;
|
protected static $instance = null;
|
||||||
|
|
||||||
protected $plugins;
|
protected $plugins;
|
||||||
|
protected $binds;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Config constructor.
|
* Config constructor.
|
||||||
@ -20,6 +21,7 @@ class Config
|
|||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
$this->plugins = collect();
|
$this->plugins = collect();
|
||||||
|
$this->binds = collect();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -39,9 +41,16 @@ class Config
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function bind(string $name, Closure $provider)
|
||||||
|
{
|
||||||
|
$this->binds[$name] = $provider;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
public function bootstrap(QueryList $queryList)
|
public function bootstrap(QueryList $queryList)
|
||||||
{
|
{
|
||||||
$this->installPlugins($queryList);
|
$this->installPlugins($queryList);
|
||||||
|
$this->installBind($queryList);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function installPlugins(QueryList $queryList)
|
protected function installPlugins(QueryList $queryList)
|
||||||
@ -55,4 +64,11 @@ class Config
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function installBind(QueryList $queryList)
|
||||||
|
{
|
||||||
|
$this->binds->each(function ($provider,$name) use($queryList){
|
||||||
|
$queryList->bind($name,$provider);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user