Completed
Push — v1.ns ( a6bb16...dc5273 )
by Timo
03:36
created
examples/Cafe/lib/messaging/DrinkRouter.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -4,14 +4,14 @@
 block discarded – undo
4 4
 use PEIP\INF\Message\Message;
5 5
 
6 6
 class DrinkRouter 
7
-	extends Router {
7
+    extends Router {
8 8
 	
9
-	protected function selectChannels(Message $message){
10
-		$order = $message->getContent();
11
-		$channelName = $order['iced']  ? 'coldDrinks' : 'hotDrinks';
12
-		echo PEIP_LINE_SEPARATOR."DrinkRouter: routed to channel: $channelName";
13
-		return $channelName;
14
-	}	
9
+    protected function selectChannels(Message $message){
10
+        $order = $message->getContent();
11
+        $channelName = $order['iced']  ? 'coldDrinks' : 'hotDrinks';
12
+        echo PEIP_LINE_SEPARATOR."DrinkRouter: routed to channel: $channelName";
13
+        return $channelName;
14
+    }	
15 15
 
16 16
 	
17 17
 }
Please login to merge, or discard this patch.
examples/Cafe/lib/messaging/OrderSplitter.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -5,20 +5,20 @@
 block discarded – undo
5 5
 
6 6
 class OrderSplitter extends MessageSplitter {
7 7
 
8
-	public function split(Message $message){
9
-		$order = $message->getContent();
10
-		$orderItems = $order->getItems();
11
-		$items = array();
12
-		foreach($orderItems as $item){
13
-			$nr = $item['number'];
14
-			unset($item['number']);
15
-			$item['order'] = $order->getOrderNumber();
16
-			for($x = 0; $x < $nr; $x++){
17
-				$items[] = $item;	
18
-			}
19
-		}
20
-		echo PEIP_LINE_SEPARATOR."OrderSplitter: split order #: ".$order->getOrderNumber();
21
-		return $items;
22
-	}
8
+    public function split(Message $message){
9
+        $order = $message->getContent();
10
+        $orderItems = $order->getItems();
11
+        $items = array();
12
+        foreach($orderItems as $item){
13
+            $nr = $item['number'];
14
+            unset($item['number']);
15
+            $item['order'] = $order->getOrderNumber();
16
+            for($x = 0; $x < $nr; $x++){
17
+                $items[] = $item;	
18
+            }
19
+        }
20
+        echo PEIP_LINE_SEPARATOR."OrderSplitter: split order #: ".$order->getOrderNumber();
21
+        return $items;
22
+    }
23 23
 	
24 24
 }
Please login to merge, or discard this patch.
examples/Cafe/lib/model/Cafe.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 class Cafe 
4
-	extends \PEIP\Gateway\SimpleMessagingGateway {
4
+    extends \PEIP\Gateway\SimpleMessagingGateway {
5 5
 
6
-	public function placeOrder(Order $order){
7
-		return $this->sendAndReceive($order);	
8
-	}
6
+    public function placeOrder(Order $order){
7
+        return $this->sendAndReceive($order);	
8
+    }
9 9
 
10 10
 }
11 11
 
Please login to merge, or discard this patch.
examples/HelloWorld/hello_world_scripted.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,9 +9,9 @@
 block discarded – undo
9 9
 // simple service class
10 10
 class HelloService {
11 11
 
12
-	public function greet($name){
13
-		return 'Hello '.$name;
14
-	}
12
+    public function greet($name){
13
+        return 'Hello '.$name;
14
+    }
15 15
 
16 16
 }
17 17
 
Please login to merge, or discard this patch.
src/Factory/ServiceFactory.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@  discard block
 block discarded – undo
16 16
 use PEIP\Context\XMLContext;
17 17
 
18 18
 class ServiceFactory {
19
-     /**
20
-     * Creates and initializes service instance from a given configuration.
21
-     *
22
-     * @access public
23
-     * @param $config configuration of the service
24
-     * @return object the initialized service instance
25
-     */
19
+        /**
20
+         * Creates and initializes service instance from a given configuration.
21
+         *
22
+         * @access public
23
+         * @param $config configuration of the service
24
+         * @return object the initialized service instance
25
+         */
26 26
     public static function createService(array $config){
27 27
         $args = array();
28 28
         //build arguments for constructor
@@ -35,15 +35,15 @@  discard block
 block discarded – undo
35 35
     }
36 36
 
37 37
         /**
38
-     * Builds an arbitrary service/object instance from a config-obect.
39
-     *
40
-     * @static
41
-     * @access protected
42
-     * @param object $config configuration object to build a service instance from.
43
-     * @param array $arguments arguments for the service constructor
44
-     * @param string $defaultClass class to create instance for if none is set in config
45
-     * @return object build and modified srvice instance
46
-     */
38
+         * Builds an arbitrary service/object instance from a config-obect.
39
+         *
40
+         * @static
41
+         * @access protected
42
+         * @param object $config configuration object to build a service instance from.
43
+         * @param array $arguments arguments for the service constructor
44
+         * @param string $defaultClass class to create instance for if none is set in config
45
+         * @return object build and modified srvice instance
46
+         */
47 47
     public static function doBuild($config, $arguments, $defaultClass = false){
48 48
         $cls = isset($config["class"]) ? trim((string)$config["class"]) : (string)$defaultClass;
49 49
         if($cls != ''){
@@ -80,12 +80,12 @@  discard block
 block discarded – undo
80 80
     }
81 81
 
82 82
         /**
83
-     * Builds single argument (to call a method with later) from a config-obect.
84
-     *
85
-     * @access protected
86
-     * @param object $config configuration object to create argument from.
87
-     * @return mixed build argument
88
-     */
83
+         * Builds single argument (to call a method with later) from a config-obect.
84
+         *
85
+         * @access protected
86
+         * @param object $config configuration object to create argument from.
87
+         * @return mixed build argument
88
+         */
89 89
     protected function buildArg($config){
90 90
         if(trim((string)$config['value']) != ''){
91 91
             $arg = (string)$config['value'];
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
      */
129 129
     public static function buildAndModify(array $config, $arguments, $defaultClass = ""){
130 130
         if((isset($config["class"]) && "" != (string)$config["class"])  || $defaultClass !== ""){
131
-             $service = ServiceFactory::doBuild($config, $arguments, $defaultClass);
131
+                $service = ServiceFactory::doBuild($config, $arguments, $defaultClass);
132 132
         }else{
133 133
             throw new \RuntimeException('Could not create Service. no class or reference given.');
134 134
         }
Please login to merge, or discard this patch.
src/Context/XMLContext.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
      * @param callable $callable a callable which creates instances for node-name 
134 134
      */
135 135
     public function registerNodeBuilder($nodeName, $callable){
136
-       return  $this->getServiceProvider()->registerNodeBuilder($nodeName, $callable);
136
+        return  $this->getServiceProvider()->registerNodeBuilder($nodeName, $callable);
137 137
     }
138 138
    
139 139
     /**
Please login to merge, or discard this patch.
src/Event/Observable.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,10 +49,10 @@
 block discarded – undo
49 49
     }
50 50
 
51 51
         /**
52
-     * @access public
53
-     * @param $observer 
54
-     * @return 
55
-     */
52
+         * @access public
53
+         * @param $observer 
54
+         * @return 
55
+         */
56 56
     public function addObserver(\PEIP\INF\Event\Observer $observer){
57 57
         $this->observers[] = $observer;     
58 58
     }
Please login to merge, or discard this patch.