Completed
Push — v1.ns ( 6f7a44...3cce68 )
by Timo
03:08
created
src/Dispatcher/ObjectMapDispatcher.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -207,11 +207,11 @@
 block discarded – undo
207 207
      * @param $object 
208 208
      * @return boolean|null
209 209
      */    
210
-    protected static function doNotify(array $listeners, $subject){
211
-        foreach($listeners as $listener){ 
212
-                if($listener instanceof \PEIP\INF\Handler\Handler){
210
+    protected static function doNotify(array $listeners, $subject) {
211
+        foreach ($listeners as $listener) { 
212
+                if ($listener instanceof \PEIP\INF\Handler\Handler) {
213 213
                 $listener->handle($subject);
214
-                }elseif(is_callable($listener)){
214
+                }elseif (is_callable($listener)) {
215 215
                     call_user_func($listener, $subject);
216 216
                 }
217 217
         }   
Please login to merge, or discard this patch.
src/Dispatcher/EventClassDispatcher.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,10 +35,10 @@
 block discarded – undo
35 35
                         ),
36 36
                         $object->getContent()
37 37
                     );
38
-            }else{
38
+            }else {
39 39
                 throw new \InvalidArgumentException('instance of \PEIP\INF\Event\Event must contain subject');
40 40
             }
41
-        }else{
41
+        }else {
42 42
             throw new \InvalidArgumentException('object must be instance of \PEIP\INF\Event\Event');
43 43
         }
44 44
     }       //put your code here
Please login to merge, or discard this patch.
src/Dispatcher/ClassEventDispatcher.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@  discard block
 block discarded – undo
26 26
      * @param Callable|PEIP\INF\Handler\Handler $listener event-handler
27 27
      * @return boolean
28 28
      */
29
-    public function connect($name, $object, $listener){ 
29
+    public function connect($name, $object, $listener) { 
30 30
         $class = is_object($object) ? get_class($object) : (string)$object;
31
-        foreach(Reflection::getImplementedClassesAndInterfaces($object) as $cls){
31
+        foreach (Reflection::getImplementedClassesAndInterfaces($object) as $cls) {
32 32
             $reflection = \PEIP\Util\ReflectionPool::getInstance($class);
33 33
             parent::connect($name, $reflection, $listener);
34 34
         }
@@ -36,13 +36,13 @@  discard block
 block discarded – undo
36 36
         return true;
37 37
     }
38 38
 
39
-    public function disconnect($name, $object, $listener){
39
+    public function disconnect($name, $object, $listener) {
40 40
         $class = is_object($object) ? get_class($object) : (string)$object;
41 41
         $res = true;
42
-        foreach(Reflection::getImplementedClassesAndInterfaces($object) as $cls){
42
+        foreach (Reflection::getImplementedClassesAndInterfaces($object) as $cls) {
43 43
             $reflection = \PEIP\Util\ReflectionPool::getInstance($class);
44 44
             $r = parent::disconnect($name, $reflection, $listener);
45
-            if(!$r){
45
+            if (!$r) {
46 46
                 $res = false;
47 47
             }
48 48
         }
@@ -69,10 +69,10 @@  discard block
 block discarded – undo
69 69
                         ),
70 70
                         $object
71 71
                     );
72
-            }else{
72
+            }else {
73 73
                 throw new \InvalidArgumentException('instance of \PEIP\INF\Event\Event must contain subject');
74 74
             }
75
-        }else{
75
+        }else {
76 76
             throw new \InvalidArgumentException('object must be instance of \PEIP\INF\Event\Event');
77 77
         }
78 78
     }       //put your code here
@@ -89,8 +89,8 @@  discard block
 block discarded – undo
89 89
          * @return
90 90
          * @see EventBuilder
91 91
          */
92
-    public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false){
93
-        if(!$this->hasListeners($name, ($object))){
92
+    public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false) {
93
+        if (!$this->hasListeners($name, ($object))) {
94 94
             return false;
95 95
         }
96 96
 
Please login to merge, or discard this patch.
src/INF/Dispatcher/ListDispatcher.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,9 +24,9 @@
 block discarded – undo
24 24
 
25 25
 interface ListDispatcher extends \PEIP\INF\Dispatcher\Dispatcher {
26 26
 
27
-    public function connect( $handler);
27
+    public function connect($handler);
28 28
 
29
-    public function disconnect( $handler);
29
+    public function disconnect($handler);
30 30
 
31 31
     public function hasListeners();
32 32
 
Please login to merge, or discard this patch.
src/INF/Message/MessageDispatcher.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@
 block discarded – undo
26 26
 
27 27
     public function disconnect($name, \PEIP\INF\Message\MessageHandler $handler);
28 28
 
29
-    public function notify( $event);
29
+    public function notify($event);
30 30
 
31
-    public function notifyUntil( $event);
31
+    public function notifyUntil($event);
32 32
 
33
-    public function filter( $event, $value);
33
+    public function filter($event, $value);
34 34
 
35 35
     public function hasListeners($name);
36 36
 
Please login to merge, or discard this patch.
src/Message/GenericMessage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,8 +81,8 @@
 block discarded – undo
81 81
          * @access public
82 82
          * @return ArrayAccess ArrayAccess object of headers
83 83
          */
84
-    public function getHeaders(){
85
-        return (array) $this->headers;
84
+    public function getHeaders() {
85
+        return (array)$this->headers;
86 86
     }
87 87
   
88 88
     /**
Please login to merge, or discard this patch.
src/Service/ServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
          * @param string $nodeName the name of the node
70 70
          * @param callable $callable a callable which creates instances for node-name
71 71
          */
72
-    public function registerNodeBuilder($nodeName, $callable){
72
+    public function registerNodeBuilder($nodeName, $callable) {
73 73
         $this->nodeBuilders[$nodeName] = $callable;
74 74
     }
75 75
     /**
@@ -82,16 +82,16 @@  discard block
 block discarded – undo
82 82
      * @see XMLContext::includeContext
83 83
      * @access protected
84 84
      */
85
-    protected function initNodeBuilders(){
85
+    protected function initNodeBuilders() {
86 86
         $builders = array(
87 87
             'service' => 'initService'
88 88
         );
89
-        foreach($builders as $nodeName => $method){
89
+        foreach ($builders as $nodeName => $method) {
90 90
             $this->registerNodeBuilder($nodeName, array($this, $method));
91 91
         }
92 92
     }
93 93
 
94
-    public function addConfig($config){ 
94
+    public function addConfig($config) { 
95 95
         $this->doFireEvent(
96 96
             self::EVENT_BEFORE_ADD_CONFIG,
97 97
             array(
Please login to merge, or discard this patch.
src/Service/HeaderServiceActivator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,12 +38,12 @@
 block discarded – undo
38 38
          * @param \PEIP\INF\Message\Message $message message to call the service with it�s content/payload
39 39
          * @return mixed result of calling the registered service callable with message content/payload
40 40
          */
41
-    protected function callService(\PEIP\INF\Message\Message $message){
41
+    protected function callService(\PEIP\INF\Message\Message $message) {
42 42
         $res = NULL; 
43
-        if(is_callable($this->serviceCallable)){
43
+        if (is_callable($this->serviceCallable)) {
44 44
             $res = call_user_func($this->serviceCallable, $message->getHeader($this->headerName));
45
-        }else{
46
-            if(is_object($this->serviceCallable) && method_exists($this->serviceCallable, 'handle')){
45
+        }else {
46
+            if (is_object($this->serviceCallable) && method_exists($this->serviceCallable, 'handle')) {
47 47
                 $res = $this->serviceCallable->handle($message->getHeader($this->headerName));
48 48
             }
49 49
         }
Please login to merge, or discard this patch.
src/ABS/Dispatcher/Dispatcher.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,9 +58,9 @@
 block discarded – undo
58 58
      * @param mixed $subject subject to notify the listeners of 
59 59
      * @return \PEIP\INF\Handler\Handler listener that returned a boolean true value
60 60
      */     
61
-    protected static function doNotifyUntil(array $listeners, $subject){
62
-        foreach ($listeners as $listener){
63
-            if (self::doNotifyOne($listener, $subject)){
61
+    protected static function doNotifyUntil(array $listeners, $subject) {
62
+        foreach ($listeners as $listener) {
63
+            if (self::doNotifyOne($listener, $subject)) {
64 64
             return $listener;
65 65
             }
66 66
         }
Please login to merge, or discard this patch.