Skip to content

Commit 7f5ffe0

Browse files
committed
Remove abbreviation
1 parent b6d491c commit 7f5ffe0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PSB - ProophServiceBus
1+
# Prooph Service Bus
22

33
PHP 7.1+ lightweight message bus supporting CQRS and Micro Services
44

docs/async_message_producer.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Async Message Producer
22

3-
Messaging becomes really interesting if you process your messages asynchronously. PSB can
3+
Messaging becomes really interesting if you process your messages asynchronously. Prooph Service Bus can
44
hide such an asynchronous workflow behind a unified interface. You can start with synchronous message
55
dispatching by routing your messages directly to message handlers and if you later want to improve response
66
times you can switch to async processing on a per message basis by routing the appropriate messages to a

docs/plugins.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# PSB Plugins
1+
# Prooph Service Bus Plugins
22

33
Plugins extend a message bus with additional functionality.
4-
PSB ships with a list of useful plugins that can be mixed and matched with your own implementations:
4+
Prooph Service Bus ships with a list of useful plugins that can be mixed and matched with your own implementations:
55

66
## Routers
77

@@ -111,7 +111,7 @@ $router->attachToMessageBus($commandBus);
111111
## Invoke Strategies
112112

113113
An invoke strategy knows how a message handler can be invoked. You can register many invoke strategies at once depending on
114-
how many different handler types you are using. The best way is to choose a convention and go with it. PSB ships with the invoke strategies
114+
how many different handler types you are using. The best way is to choose a convention and go with it. Prooph Service Bus ships with the invoke strategies
115115
listed below.
116116

117117
### Available Strategies

docs/service_bus_system.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PSB Overview
1+
# Prooph Service Bus Overview
22

33
prooph/service-bus acts as a messaging facade. It operates on the application layer and shields your domain model.
44
In addition we also provide so-called "message producers" which connect prooph/service-bus
@@ -79,7 +79,7 @@ It is pretty straight forward.
7979

8080
# Synchronous Versus Asynchronous Processing
8181

82-
PSB provides both possibilities behind a unified interface.
82+
Prooph Service Bus provides both possibilities behind a unified interface.
8383
Remember the statement "Messaging means fire and forget".
8484
The callee never knows if the message is processed synchronously or asynchronously.
8585
A message can be directly routed to its handler. In this case, we talk about synchronous

0 commit comments

Comments
 (0)