@@ -11,7 +11,7 @@ |
||
11 | 11 | public function __construct( |
12 | 12 | string $reason = '', |
13 | 13 | private ?OptionsInterface $options = null |
14 | - ) { |
|
14 | + ){ |
|
15 | 15 | parent::__construct($reason); |
16 | 16 | } |
17 | 17 |
@@ -10,7 +10,7 @@ |
||
10 | 10 | { |
11 | 11 | public function __construct( |
12 | 12 | private readonly ExceptionReporterInterface $reporter |
13 | - ) { |
|
13 | + ){ |
|
14 | 14 | } |
15 | 15 | |
16 | 16 | public function handle(string $driver, string $queue, string $job, array $payload, \Throwable $e): void |
@@ -16,19 +16,19 @@ |
||
16 | 16 | |
17 | 17 | public function __construct( |
18 | 18 | private readonly ContainerInterface $container |
19 | - ) { |
|
19 | + ){ |
|
20 | 20 | $this->inflector = (new InflectorFactory())->build(); |
21 | 21 | } |
22 | 22 | |
23 | 23 | public function getHandler(string $jobType): HandlerInterface |
24 | 24 | { |
25 | - try { |
|
25 | + try{ |
|
26 | 26 | $handler = $this->container->get($this->className($jobType)); |
27 | - } catch (ContainerException $e) { |
|
27 | + }catch (ContainerException $e){ |
|
28 | 28 | throw new JobException($e->getMessage(), $e->getCode(), $e); |
29 | 29 | } |
30 | 30 | |
31 | - if (!$handler instanceof HandlerInterface) { |
|
31 | + if (!$handler instanceof HandlerInterface){ |
|
32 | 32 | throw new JobException(\sprintf('Unable to resolve job handler for `%s`', $jobType)); |
33 | 33 | } |
34 | 34 |
@@ -22,13 +22,17 @@ |
||
22 | 22 | |
23 | 23 | public function getHandler(string $jobType): HandlerInterface |
24 | 24 | { |
25 | - try { |
|
25 | + try |
|
26 | + { |
|
26 | 27 | $handler = $this->container->get($this->className($jobType)); |
27 | - } catch (ContainerException $e) { |
|
28 | + } |
|
29 | + catch (ContainerException $e) |
|
30 | + { |
|
28 | 31 | throw new JobException($e->getMessage(), $e->getCode(), $e); |
29 | 32 | } |
30 | 33 | |
31 | - if (!$handler instanceof HandlerInterface) { |
|
34 | + if (!$handler instanceof HandlerInterface) |
|
35 | + { |
|
32 | 36 | throw new JobException(\sprintf('Unable to resolve job handler for `%s`', $jobType)); |
33 | 37 | } |
34 | 38 |
@@ -19,13 +19,13 @@ |
||
19 | 19 | |
20 | 20 | public function __construct( |
21 | 21 | private readonly Handler $coreHandler |
22 | - ) { |
|
22 | + ){ |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** @inheritdoc */ |
26 | 26 | public function push(string $name, array $payload = [], OptionsInterface $options = null): string |
27 | 27 | { |
28 | - if ($options !== null && $options->getDelay()) { |
|
28 | + if ($options !== null && $options->getDelay()){ |
|
29 | 29 | \sleep($options->getDelay()); |
30 | 30 | } |
31 | 31 |
@@ -25,7 +25,8 @@ |
||
25 | 25 | /** @inheritdoc */ |
26 | 26 | public function push(string $name, array $payload = [], OptionsInterface $options = null): string |
27 | 27 | { |
28 | - if ($options !== null && $options->getDelay()) { |
|
28 | + if ($options !== null && $options->getDelay()) |
|
29 | + { |
|
29 | 30 | \sleep($options->getDelay()); |
30 | 31 | } |
31 | 32 |
@@ -23,7 +23,7 @@ |
||
23 | 23 | public function __construct( |
24 | 24 | private readonly HandlerRegistryInterface $registry, |
25 | 25 | private readonly ?EventDispatcherInterface $dispatcher = null |
26 | - ) { |
|
26 | + ){ |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -13,16 +13,16 @@ |
||
13 | 13 | { |
14 | 14 | public function __construct( |
15 | 15 | private readonly FailedJobHandlerInterface $handler |
16 | - ) { |
|
16 | + ){ |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | /** @psalm-suppress ParamNameMismatch */ |
20 | 20 | public function process(string $name, string $action, array $parameters, CoreInterface $core): mixed |
21 | 21 | { |
22 | - try { |
|
22 | + try{ |
|
23 | 23 | return $core->callAction($name, $action, $parameters); |
24 | - } catch (\Throwable $e) { |
|
25 | - if (!$e instanceof StateException) { |
|
24 | + }catch (\Throwable $e){ |
|
25 | + if (!$e instanceof StateException){ |
|
26 | 26 | $this->handler->handle( |
27 | 27 | $parameters['driver'], |
28 | 28 | $parameters['queue'], |
@@ -19,10 +19,14 @@ |
||
19 | 19 | /** @psalm-suppress ParamNameMismatch */ |
20 | 20 | public function process(string $name, string $action, array $parameters, CoreInterface $core): mixed |
21 | 21 | { |
22 | - try { |
|
22 | + try |
|
23 | + { |
|
23 | 24 | return $core->callAction($name, $action, $parameters); |
24 | - } catch (\Throwable $e) { |
|
25 | - if (!$e instanceof StateException) { |
|
25 | + } |
|
26 | + catch (\Throwable $e) |
|
27 | + { |
|
28 | + if (!$e instanceof StateException) |
|
29 | + { |
|
26 | 30 | $this->handler->handle( |
27 | 31 | $parameters['driver'], |
28 | 32 | $parameters['queue'], |
@@ -10,7 +10,7 @@ |
||
10 | 10 | { |
11 | 11 | public function __construct( |
12 | 12 | private readonly CoreInterface $core |
13 | - ) { |
|
13 | + ){ |
|
14 | 14 | } |
15 | 15 | |
16 | 16 | /** |
@@ -29,13 +29,13 @@ discard block |
||
29 | 29 | |
30 | 30 | public function __construct($name = null, array $data = [], $dataName = '') |
31 | 31 | { |
32 | - $this->storage = new Storage($this->dir() . '/Fixtures/'); |
|
32 | + $this->storage = new Storage($this->dir().'/Fixtures/'); |
|
33 | 33 | parent::__construct($name, $data, $dataName); |
34 | 34 | } |
35 | 35 | |
36 | 36 | public function setUp(): void |
37 | 37 | { |
38 | - if (!\class_exists(Kernel::class)) { |
|
38 | + if (!\class_exists(Kernel::class)){ |
|
39 | 39 | $this->markTestSkipped('A "spiral/framework" dependency is required to run these tests'); |
40 | 40 | } |
41 | 41 | |
@@ -46,14 +46,14 @@ discard block |
||
46 | 46 | 'cache' => sys_get_temp_dir() |
47 | 47 | ], false)->run(); |
48 | 48 | |
49 | - foreach (static::STORE as $name) { |
|
49 | + foreach (static::STORE as $name){ |
|
50 | 50 | $this->storage->store($name); |
51 | 51 | } |
52 | 52 | } |
53 | 53 | |
54 | 54 | public function tearDown(): void |
55 | 55 | { |
56 | - foreach (static::STORE as $name) { |
|
56 | + foreach (static::STORE as $name){ |
|
57 | 57 | $this->storage->restore($name); |
58 | 58 | } |
59 | 59 | } |
@@ -35,7 +35,8 @@ discard block |
||
35 | 35 | |
36 | 36 | public function setUp(): void |
37 | 37 | { |
38 | - if (!\class_exists(Kernel::class)) { |
|
38 | + if (!\class_exists(Kernel::class)) |
|
39 | + { |
|
39 | 40 | $this->markTestSkipped('A "spiral/framework" dependency is required to run these tests'); |
40 | 41 | } |
41 | 42 | |
@@ -46,14 +47,16 @@ discard block |
||
46 | 47 | 'cache' => sys_get_temp_dir() |
47 | 48 | ], false)->run(); |
48 | 49 | |
49 | - foreach (static::STORE as $name) { |
|
50 | + foreach (static::STORE as $name) |
|
51 | + { |
|
50 | 52 | $this->storage->store($name); |
51 | 53 | } |
52 | 54 | } |
53 | 55 | |
54 | 56 | public function tearDown(): void |
55 | 57 | { |
56 | - foreach (static::STORE as $name) { |
|
58 | + foreach (static::STORE as $name) |
|
59 | + { |
|
57 | 60 | $this->storage->restore($name); |
58 | 61 | } |
59 | 62 | } |
@@ -11,7 +11,7 @@ |
||
11 | 11 | { |
12 | 12 | public function __construct( |
13 | 13 | private readonly ScopedClassesInterface $classes |
14 | - ) { |
|
14 | + ){ |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | /** |