Move some code around
parent
c81a776279
commit
f546025bae
|
@ -34,6 +34,11 @@ class PackageRepository extends ArrayRepository
|
||||||
public function __construct(array $config)
|
public function __construct(array $config)
|
||||||
{
|
{
|
||||||
$this->config = $config['package'];
|
$this->config = $config['package'];
|
||||||
|
|
||||||
|
// make sure we have an array of package definitions
|
||||||
|
if (!is_numeric(key($this->config))) {
|
||||||
|
$this->config = array($this->config);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -43,10 +48,6 @@ class PackageRepository extends ArrayRepository
|
||||||
{
|
{
|
||||||
parent::initialize();
|
parent::initialize();
|
||||||
|
|
||||||
if (!is_numeric(key($this->config))) {
|
|
||||||
$this->config = array($this->config);
|
|
||||||
}
|
|
||||||
|
|
||||||
$loader = new ArrayLoader();
|
$loader = new ArrayLoader();
|
||||||
foreach ($this->config as $package) {
|
foreach ($this->config as $package) {
|
||||||
$package = $loader->load($package);
|
$package = $loader->load($package);
|
||||||
|
|
Loading…
Reference in New Issue