FIX: missing text
This commit is contained in:
@ -157,7 +157,7 @@ return [
|
|||||||
$container->get(Incoviba\Service\Job::class),
|
$container->get(Incoviba\Service\Job::class),
|
||||||
$container->get(Incoviba\Service\Worker\Request::class)
|
$container->get(Incoviba\Service\Worker\Request::class)
|
||||||
))
|
))
|
||||||
->register('request', $container->get())
|
->register('request', $container->get(Incoviba\Service\Worker\Request::class))
|
||||||
->register('dummy', $container->get(Incoviba\Service\Worker\Dummy::class));
|
->register('dummy', $container->get(Incoviba\Service\Worker\Dummy::class));
|
||||||
},
|
},
|
||||||
Incoviba\Service\Worker\Request::class => function(ContainerInterface $container) {
|
Incoviba\Service\Worker\Request::class => function(ContainerInterface $container) {
|
||||||
|
@ -12,11 +12,6 @@ use Psr\Log\LoggerInterface;
|
|||||||
|
|
||||||
class Toku extends Ideal\Service
|
class Toku extends Ideal\Service
|
||||||
{
|
{
|
||||||
public function __construct(LoggerInterface $logger)
|
|
||||||
{
|
|
||||||
parent::__construct($logger);
|
|
||||||
}
|
|
||||||
|
|
||||||
const string CUSTOMER = 'customer';
|
const string CUSTOMER = 'customer';
|
||||||
const string SUBSCRIPTION = 'subscription';
|
const string SUBSCRIPTION = 'subscription';
|
||||||
const string INVOICE = 'invoice';
|
const string INVOICE = 'invoice';
|
||||||
|
Reference in New Issue
Block a user