I wish to create a new instance of SomeService
which must be injected with some data which is not known when defining the service in Pimple. The following technically works, but surely cannot be the proper way to do so. How should this be accomplished?
<?php
use Pimple\Container;
class SomeService
{
private $theNewData;
public function __construct(MyPdo $pdo, array $theNewData){
$this->theNewData=$theNewData;
}
public function getJsonString():string{
return json_encode($this->theNewData);
}
}
class MyPdo{}
function getServiceSometimeInTheFuture(Container $container):SomeService {
$someFutureData= ['a'=>1,'b'=>2,'c'=>3,];
/*
How do I inject this content into SomeService other than using Pimple as a temporary transport?
*/
$container['temp']=$someFutureData;
$newInstance=$container['someService'];
unset($container['temp']);
return $newInstance;
}
require '../vendor/autoload.php';
$container=new Container();
$container['myPdo'] = function ($c) {
return new MyPdo();
};
$container['someService'] = $container->factory(function ($c) {
return new SomeService($c['myPdo'], $c['temp']);
});
$service = getServiceSometimeInTheFuture($container);
echo($service->getJsonString());
Use Pimple's
raw()
method.The service will need to be set up to accept the new data.