Completed
Push — master ( 61468b...72db89 )
by Olivier
15s
created
lib/SimpleHandlerProvider.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -16,28 +16,28 @@
 block discarded – undo
16 16
  */
17 17
 final class SimpleHandlerProvider implements HandlerProvider
18 18
 {
19
-    /**
20
-     * @var array<string, callable>
21
-     */
22
-    private $handlers;
19
+	/**
20
+	 * @var array<string, callable>
21
+	 */
22
+	private $handlers;
23 23
 
24
-    /**
25
-     * @param array<string, callable> $handlers
26
-     */
27
-    public function __construct(array $handlers)
28
-    {
29
-        $this->handlers = $handlers;
30
-    }
24
+	/**
25
+	 * @param array<string, callable> $handlers
26
+	 */
27
+	public function __construct(array $handlers)
28
+	{
29
+		$this->handlers = $handlers;
30
+	}
31 31
 
32
-    public function getHandlerForMessage(object $message): callable
33
-    {
34
-        $class = get_class($message);
35
-        $handler = $this->handlers[$class] ?? null;
32
+	public function getHandlerForMessage(object $message): callable
33
+	{
34
+		$class = get_class($message);
35
+		$handler = $this->handlers[$class] ?? null;
36 36
 
37
-        if (!$handler) {
38
-            throw new NotFound("No handler for messages of type `$class`.");
39
-        }
37
+		if (!$handler) {
38
+			throw new NotFound("No handler for messages of type `$class`.");
39
+		}
40 40
 
41
-        return $handler;
42
-    }
41
+		return $handler;
42
+	}
43 43
 }
Please login to merge, or discard this patch.
lib/HandlerProvider.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -16,15 +16,15 @@
 block discarded – undo
16 16
  */
17 17
 interface HandlerProvider
18 18
 {
19
-    /**
20
-     * @param object $message
21
-     *   A message for which to return the relevant handler.
22
-     *
23
-     * @return callable
24
-     *   A callable that MUST be type-compatible with $message.
25
-     *
26
-     * @throws NotFound
27
-     *   The handler for the message cannot the found.
28
-     */
29
-    public function getHandlerForMessage(object $message): callable;
19
+	/**
20
+	 * @param object $message
21
+	 *   A message for which to return the relevant handler.
22
+	 *
23
+	 * @return callable
24
+	 *   A callable that MUST be type-compatible with $message.
25
+	 *
26
+	 * @throws NotFound
27
+	 *   The handler for the message cannot the found.
28
+	 */
29
+	public function getHandlerForMessage(object $message): callable;
30 30
 }
Please login to merge, or discard this patch.
lib/PSR/QueryDispatcher.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
 
16 16
 class QueryDispatcher extends SimpleDispatcher
17 17
 {
18
-    public function __construct(QueryHandlerProvider $handlerProvider)
19
-    {
20
-        parent::__construct($handlerProvider);
21
-    }
18
+	public function __construct(QueryHandlerProvider $handlerProvider)
19
+	{
20
+		parent::__construct($handlerProvider);
21
+	}
22 22
 }
Please login to merge, or discard this patch.
lib/PSR/CommandDispatcher.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
 
16 16
 class CommandDispatcher extends SimpleDispatcher
17 17
 {
18
-    public function __construct(CommandHandlerProvider $handlerProvider)
19
-    {
20
-        parent::__construct($handlerProvider);
21
-    }
18
+	public function __construct(CommandHandlerProvider $handlerProvider)
19
+	{
20
+		parent::__construct($handlerProvider);
21
+	}
22 22
 }
Please login to merge, or discard this patch.
lib/AssertingDispatcher.php 1 patch
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -16,36 +16,36 @@
 block discarded – undo
16 16
  */
17 17
 class AssertingDispatcher implements Dispatcher
18 18
 {
19
-    /**
20
-     * @var Dispatcher
21
-     */
22
-    private $dispatcher;
19
+	/**
20
+	 * @var Dispatcher
21
+	 */
22
+	private $dispatcher;
23 23
 
24
-    /**
25
-     * @var callable
26
-     */
27
-    private $assertion;
24
+	/**
25
+	 * @var callable
26
+	 */
27
+	private $assertion;
28 28
 
29
-    /**
30
-     * @param Dispatcher $dispatcher
31
-     * @param callable $assertion A callable that should throw an exception if the message shouldn't
32
-     * be dispatched.
33
-     */
34
-    public function __construct(Dispatcher $dispatcher, callable $assertion)
35
-    {
36
-        $this->dispatcher = $dispatcher;
37
-        $this->assertion = $assertion;
38
-    }
29
+	/**
30
+	 * @param Dispatcher $dispatcher
31
+	 * @param callable $assertion A callable that should throw an exception if the message shouldn't
32
+	 * be dispatched.
33
+	 */
34
+	public function __construct(Dispatcher $dispatcher, callable $assertion)
35
+	{
36
+		$this->dispatcher = $dispatcher;
37
+		$this->assertion = $assertion;
38
+	}
39 39
 
40
-    /**
41
-     * @param object $message
42
-     *
43
-     * @return mixed
44
-     */
45
-    public function dispatch(object $message)
46
-    {
47
-        ($this->assertion)($message);
40
+	/**
41
+	 * @param object $message
42
+	 *
43
+	 * @return mixed
44
+	 */
45
+	public function dispatch(object $message)
46
+	{
47
+		($this->assertion)($message);
48 48
 
49
-        return $this->dispatcher->dispatch($message);
50
-    }
49
+		return $this->dispatcher->dispatch($message);
50
+	}
51 51
 }
Please login to merge, or discard this patch.
lib/NotFound.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@
 block discarded – undo
19 19
  */
20 20
 final class NotFound extends LogicException implements Exception
21 21
 {
22
-    public function __construct(string $message, Throwable $previous = null)
23
-    {
24
-        parent::__construct($message, 0, $previous);
25
-    }
22
+	public function __construct(string $message, Throwable $previous = null)
23
+	{
24
+		parent::__construct($message, 0, $previous);
25
+	}
26 26
 }
Please login to merge, or discard this patch.
lib/Dispatcher.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -16,15 +16,15 @@
 block discarded – undo
16 16
  */
17 17
 interface Dispatcher
18 18
 {
19
-    /**
20
-     * @param object $message
21
-     *   The message to dispatch.
22
-     *
23
-     * @return mixed
24
-     *   Result type depends on the handler.
25
-     *
26
-     * @throws NotFound
27
-     *   The handler for the message cannot the found.
28
-     */
29
-    public function dispatch(object $message);
19
+	/**
20
+	 * @param object $message
21
+	 *   The message to dispatch.
22
+	 *
23
+	 * @return mixed
24
+	 *   Result type depends on the handler.
25
+	 *
26
+	 * @throws NotFound
27
+	 *   The handler for the message cannot the found.
28
+	 */
29
+	public function dispatch(object $message);
30 30
 }
Please login to merge, or discard this patch.
lib/Symfony/QueryHandlerProviderPass.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -26,17 +26,17 @@
 block discarded – undo
26 26
  */
27 27
 final class QueryHandlerProviderPass extends HandlerProviderPass
28 28
 {
29
-    public const DEFAULT_SERVICE_ID = QueryHandlerProvider::class;
30
-    public const DEFAULT_HANDLER_TAG = 'query_dispatcher.handler';
31
-    public const DEFAULT_MESSAGE_PROPERTY = 'query';
32
-    public const DEFAULT_PROVIDER_CLASS = QueryHandlerProvider::class;
29
+	public const DEFAULT_SERVICE_ID = QueryHandlerProvider::class;
30
+	public const DEFAULT_HANDLER_TAG = 'query_dispatcher.handler';
31
+	public const DEFAULT_MESSAGE_PROPERTY = 'query';
32
+	public const DEFAULT_PROVIDER_CLASS = QueryHandlerProvider::class;
33 33
 
34
-    public function __construct(
35
-        string $serviceId = self::DEFAULT_SERVICE_ID,
36
-        string $handlerTag = self::DEFAULT_HANDLER_TAG,
37
-        string $messageProperty = self::DEFAULT_MESSAGE_PROPERTY,
38
-        string $providerClass = self::DEFAULT_PROVIDER_CLASS
39
-    ) {
40
-        parent::__construct($serviceId, $handlerTag, $messageProperty, $providerClass);
41
-    }
34
+	public function __construct(
35
+		string $serviceId = self::DEFAULT_SERVICE_ID,
36
+		string $handlerTag = self::DEFAULT_HANDLER_TAG,
37
+		string $messageProperty = self::DEFAULT_MESSAGE_PROPERTY,
38
+		string $providerClass = self::DEFAULT_PROVIDER_CLASS
39
+	) {
40
+		parent::__construct($serviceId, $handlerTag, $messageProperty, $providerClass);
41
+	}
42 42
 }
Please login to merge, or discard this patch.
lib/Symfony/CommandHandlerProviderPass.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -26,17 +26,17 @@
 block discarded – undo
26 26
  */
27 27
 final class CommandHandlerProviderPass extends HandlerProviderPass
28 28
 {
29
-    public const DEFAULT_SERVICE_ID = CommandHandlerProvider::class;
30
-    public const DEFAULT_HANDLER_TAG = 'command_dispatcher.handler';
31
-    public const DEFAULT_MESSAGE_PROPERTY = 'command';
32
-    public const DEFAULT_PROVIDER_CLASS = CommandHandlerProvider::class;
29
+	public const DEFAULT_SERVICE_ID = CommandHandlerProvider::class;
30
+	public const DEFAULT_HANDLER_TAG = 'command_dispatcher.handler';
31
+	public const DEFAULT_MESSAGE_PROPERTY = 'command';
32
+	public const DEFAULT_PROVIDER_CLASS = CommandHandlerProvider::class;
33 33
 
34
-    public function __construct(
35
-        string $serviceId = self::DEFAULT_SERVICE_ID,
36
-        string $handlerTag = self::DEFAULT_HANDLER_TAG,
37
-        string $messageProperty = self::DEFAULT_MESSAGE_PROPERTY,
38
-        string $providerClass = self::DEFAULT_PROVIDER_CLASS
39
-    ) {
40
-        parent::__construct($serviceId, $handlerTag, $messageProperty, $providerClass);
41
-    }
34
+	public function __construct(
35
+		string $serviceId = self::DEFAULT_SERVICE_ID,
36
+		string $handlerTag = self::DEFAULT_HANDLER_TAG,
37
+		string $messageProperty = self::DEFAULT_MESSAGE_PROPERTY,
38
+		string $providerClass = self::DEFAULT_PROVIDER_CLASS
39
+	) {
40
+		parent::__construct($serviceId, $handlerTag, $messageProperty, $providerClass);
41
+	}
42 42
 }
Please login to merge, or discard this patch.