@@ -71,7 +71,6 @@ |
||
| 71 | 71 | * notifies all listeners on a event on a subject |
| 72 | 72 | * |
| 73 | 73 | * @access public |
| 74 | - * @param string $name name of the event |
|
| 75 | 74 | * @param mixed $subject the subject |
| 76 | 75 | * @return |
| 77 | 76 | */ |
@@ -18,11 +18,11 @@ discard block |
||
| 18 | 18 | * @param Callable|PEIP\INF\Handler\Handler $listener listener to connect |
| 19 | 19 | * @return |
| 20 | 20 | */ |
| 21 | - public function connect($name, $listener){ |
|
| 21 | + public function connect($name, $listener) { |
|
| 22 | 22 | $name = is_object($name) ? get_class($name) : (string)$name; |
| 23 | - if(Test::assertClassOrInterfaceExists($name)){ |
|
| 23 | + if (Test::assertClassOrInterfaceExists($name)) { |
|
| 24 | 24 | parent::connect($name, $listener); |
| 25 | - }else{ |
|
| 25 | + }else { |
|
| 26 | 26 | throw new \InvalidArgumentException($name." is not an Class nor Interface"); |
| 27 | 27 | } |
| 28 | 28 | } |
@@ -35,10 +35,10 @@ discard block |
||
| 35 | 35 | * @param mixed $subject the subject |
| 36 | 36 | * @return |
| 37 | 37 | */ |
| 38 | - public function notify($name, $subject){ |
|
| 38 | + public function notify($name, $subject) { |
|
| 39 | 39 | $res = false; |
| 40 | - foreach(Reflection::getImplementedClassesAndInterfaces($name) as $cls){ |
|
| 41 | - if(parent::hasListeners($cls)){ |
|
| 40 | + foreach (Reflection::getImplementedClassesAndInterfaces($name) as $cls) { |
|
| 41 | + if (parent::hasListeners($cls)) { |
|
| 42 | 42 | self::doNotify($this->getListeners($cls), $subject); |
| 43 | 43 | $res = true; |
| 44 | 44 | } |
@@ -56,10 +56,10 @@ discard block |
||
| 56 | 56 | * @param mixed $subject the subject |
| 57 | 57 | * @return \PEIP\INF\Handler\Handler listener which returned a boolean true value |
| 58 | 58 | */ |
| 59 | - public function notifyUntil($name, $subject){ |
|
| 59 | + public function notifyUntil($name, $subject) { |
|
| 60 | 60 | $res = NULL; |
| 61 | - foreach(Reflection::getImplementedClassesAndInterfaces($name) as $cls){ |
|
| 62 | - if(!$res && parent::hasListeners($cls)){ |
|
| 61 | + foreach (Reflection::getImplementedClassesAndInterfaces($name) as $cls) { |
|
| 62 | + if (!$res && parent::hasListeners($cls)) { |
|
| 63 | 63 | $res = self::doNotifyUntil($this->getListeners($cls), $subject); |
| 64 | 64 | } |
| 65 | 65 | } |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | * @param mixed $subject the subject |
| 76 | 76 | * @return |
| 77 | 77 | */ |
| 78 | - public function notifyOfInstance($subject){ |
|
| 78 | + public function notifyOfInstance($subject) { |
|
| 79 | 79 | |
| 80 | 80 | return $this->notify(get_class($subject), $subject); |
| 81 | 81 | } |
@@ -86,9 +86,9 @@ discard block |
||
| 86 | 86 | * @param string $name name of the event |
| 87 | 87 | * @return boolean wether any listener is registered for event-name |
| 88 | 88 | */ |
| 89 | - public function hasListeners($name){ |
|
| 90 | - foreach(Reflection::getImplementedClassesAndInterfaces($name) as $cls){ |
|
| 91 | - if(parent::hasListeners($cls)){ |
|
| 89 | + public function hasListeners($name) { |
|
| 90 | + foreach (Reflection::getImplementedClassesAndInterfaces($name) as $cls) { |
|
| 91 | + if (parent::hasListeners($cls)) { |
|
| 92 | 92 | return true; |
| 93 | 93 | } |
| 94 | 94 | } |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | $name = is_object($name) ? get_class($name) : (string)$name; |
| 23 | 23 | if(Test::assertClassOrInterfaceExists($name)){ |
| 24 | 24 | parent::connect($name, $listener); |
| 25 | - }else{ |
|
| 25 | + } else{ |
|
| 26 | 26 | throw new \InvalidArgumentException($name." is not an Class nor Interface"); |
| 27 | 27 | } |
| 28 | 28 | } |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | * @access public |
| 56 | 56 | * @param string $name name of the event |
| 57 | 57 | * @param \PEIP\INF\Event\Event $object an event object |
| 58 | - * @return boolean |
|
| 58 | + * @return boolean|null |
|
| 59 | 59 | */ |
| 60 | 60 | public function notify($name, $object){ |
| 61 | 61 | if($object instanceof \PEIP\INF\Event\Event){ |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | * @param array $headers headers of the event-object as key/value pairs |
| 88 | 88 | * @param string $eventClass event-class to create instances from |
| 89 | 89 | * @return |
| 90 | - * @see EventBuilder |
|
| 90 | + boolean|null @see EventBuilder |
|
| 91 | 91 | */ |
| 92 | 92 | public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false){ |
| 93 | 93 | if(!$this->hasListeners($name, ($object))){ |
@@ -66,9 +66,9 @@ discard block |
||
| 66 | 66 | Reflection_Pool::getInstance( |
| 67 | 67 | $object->getContent() |
| 68 | 68 | ) |
| 69 | - ), |
|
| 70 | - $object |
|
| 71 | - ); |
|
| 69 | + ), |
|
| 70 | + $object |
|
| 71 | + ); |
|
| 72 | 72 | }else{ |
| 73 | 73 | throw new \InvalidArgumentException('instance of \PEIP\INF\Event\Event must contain subject'); |
| 74 | 74 | } |
@@ -77,18 +77,18 @@ discard block |
||
| 77 | 77 | } |
| 78 | 78 | } //put your code here |
| 79 | 79 | |
| 80 | - /** |
|
| 81 | - * Creates an event-object with given object as content/subject and notifies |
|
| 82 | - * all registers listeners of the event. |
|
| 83 | - * |
|
| 84 | - * @access public |
|
| 85 | - * @param string $name name of the event |
|
| 86 | - * @param object $object the subject of the event |
|
| 87 | - * @param array $headers headers of the event-object as key/value pairs |
|
| 88 | - * @param string $eventClass event-class to create instances from |
|
| 89 | - * @return |
|
| 90 | - * @see EventBuilder |
|
| 91 | - */ |
|
| 80 | + /** |
|
| 81 | + * Creates an event-object with given object as content/subject and notifies |
|
| 82 | + * all registers listeners of the event. |
|
| 83 | + * |
|
| 84 | + * @access public |
|
| 85 | + * @param string $name name of the event |
|
| 86 | + * @param object $object the subject of the event |
|
| 87 | + * @param array $headers headers of the event-object as key/value pairs |
|
| 88 | + * @param string $eventClass event-class to create instances from |
|
| 89 | + * @return |
|
| 90 | + * @see EventBuilder |
|
| 91 | + */ |
|
| 92 | 92 | public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false){ |
| 93 | 93 | if(!$this->hasListeners($name, ($object))){ |
| 94 | 94 | return false; |
@@ -26,9 +26,9 @@ discard block |
||
| 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 = Reflection_Pool::getInstance($class); |
| 33 | 33 | parent::connect($name, $reflection, $listener); |
| 34 | 34 | } |
@@ -36,13 +36,13 @@ discard block |
||
| 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 = Reflection_Pool::getInstance($class); |
| 44 | 44 | $r = parent::disconnect($name, $reflection, $listener); |
| 45 | - if(!$r){ |
|
| 45 | + if (!$r) { |
|
| 46 | 46 | $res = false; |
| 47 | 47 | } |
| 48 | 48 | } |
@@ -57,9 +57,9 @@ discard block |
||
| 57 | 57 | * @param \PEIP\INF\Event\Event $object an event object |
| 58 | 58 | * @return boolean |
| 59 | 59 | */ |
| 60 | - public function notify($name, $object){ |
|
| 61 | - if($object instanceof \PEIP\INF\Event\Event){ |
|
| 62 | - if(is_object($object->getContent())){ |
|
| 60 | + public function notify($name, $object) { |
|
| 61 | + if ($object instanceof \PEIP\INF\Event\Event) { |
|
| 62 | + if (is_object($object->getContent())) { |
|
| 63 | 63 | return self::doNotify( |
| 64 | 64 | $this->getListeners( |
| 65 | 65 | $name, |
@@ -69,10 +69,10 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | * @param object $object object to check for listeners |
| 114 | 114 | * @return boolean |
| 115 | 115 | */ |
| 116 | - public function hasListeners($name, $object){ |
|
| 116 | + public function hasListeners($name, $object) { |
|
| 117 | 117 | return parent::hasListeners( |
| 118 | 118 | $name, |
| 119 | 119 | \PEIP\Util\ReflectionPool::getInstance($object) |
@@ -69,10 +69,10 @@ |
||
| 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 |
@@ -65,7 +65,6 @@ |
||
| 65 | 65 | * Disconnects all listeners. |
| 66 | 66 | * |
| 67 | 67 | * @access public |
| 68 | - * @param Callable|PEIP\INF\Handler\Handler $listener |
|
| 69 | 68 | * @return void |
| 70 | 69 | */ |
| 71 | 70 | public function disconnectAll(){ |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | * @param Callable|PEIP\INF\Handler\Handler $listener |
| 41 | 41 | * @return void |
| 42 | 42 | */ |
| 43 | - public function connect($listener){ |
|
| 43 | + public function connect($listener) { |
|
| 44 | 44 | Test::ensureHandler($listener); |
| 45 | 45 | $this->listeners[] = $listener; |
| 46 | 46 | } |
@@ -52,10 +52,10 @@ discard block |
||
| 52 | 52 | * @param Callable|PEIP\INF\Handler\Handler $listener |
| 53 | 53 | * @return void |
| 54 | 54 | */ |
| 55 | - public function disconnect($listener){ |
|
| 55 | + public function disconnect($listener) { |
|
| 56 | 56 | Test::ensureHandler($listener); |
| 57 | - foreach ($this->listeners as $i => $callable){ |
|
| 58 | - if ($listener === $callable){ |
|
| 57 | + foreach ($this->listeners as $i => $callable) { |
|
| 58 | + if ($listener === $callable) { |
|
| 59 | 59 | unset($this->listeners[$i]); |
| 60 | 60 | } |
| 61 | 61 | } |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | * @param Callable|PEIP\INF\Handler\Handler $listener |
| 69 | 69 | * @return void |
| 70 | 70 | */ |
| 71 | - public function disconnectAll(){ |
|
| 71 | + public function disconnectAll() { |
|
| 72 | 72 | $this->listeners = array(); |
| 73 | 73 | } |
| 74 | 74 | |
@@ -78,8 +78,8 @@ discard block |
||
| 78 | 78 | * @access public |
| 79 | 79 | * @return boolean wether any listeners are registered |
| 80 | 80 | */ |
| 81 | - public function hasListeners(){ |
|
| 82 | - return (boolean) count($this->listeners); |
|
| 81 | + public function hasListeners() { |
|
| 82 | + return (boolean)count($this->listeners); |
|
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | /** |
@@ -89,9 +89,9 @@ discard block |
||
| 89 | 89 | * @param mixed $subject the subject |
| 90 | 90 | * @return void |
| 91 | 91 | */ |
| 92 | - public function notify($subject){ |
|
| 92 | + public function notify($subject) { |
|
| 93 | 93 | $res = NULL; |
| 94 | - if($this->hasListeners()){ |
|
| 94 | + if ($this->hasListeners()) { |
|
| 95 | 95 | $res = self::doNotify($this->getListeners(), $subject); |
| 96 | 96 | } |
| 97 | 97 | return $res; |
@@ -104,8 +104,8 @@ discard block |
||
| 104 | 104 | * @param mixed $subject the subject |
| 105 | 105 | * @return \PEIP\INF\Handler\Handler the listener which returned a boolean true value |
| 106 | 106 | */ |
| 107 | - public function notifyUntil($subject){ |
|
| 108 | - if($this->hasListeners()){ |
|
| 107 | + public function notifyUntil($subject) { |
|
| 108 | + if ($this->hasListeners()) { |
|
| 109 | 109 | $res = self::doNotifyUntil($this->getListeners(), $subject); |
| 110 | 110 | } |
| 111 | 111 | return $res; |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | * @access public |
| 118 | 118 | * @return array the listeners |
| 119 | 119 | */ |
| 120 | - public function getListeners(){ |
|
| 120 | + public function getListeners() { |
|
| 121 | 121 | return $this->listeners; |
| 122 | 122 | } |
| 123 | 123 | |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | * @access public |
| 24 | 24 | * @param string $name name of the event |
| 25 | 25 | * @param \PEIP\INF\Event\Event $object an event object |
| 26 | - * @return boolean |
|
| 26 | + * @return boolean|null |
|
| 27 | 27 | */ |
| 28 | 28 | public function notify($name, $object){ |
| 29 | 29 | if($object instanceof \PEIP\INF\Event\Event){ |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | * @param array $headers headers of the event-object as key/value pairs |
| 54 | 54 | * @param string $eventClass event-class to create instances from |
| 55 | 55 | * @return |
| 56 | - * @see EventBuilder |
|
| 56 | + boolean|null @see EventBuilder |
|
| 57 | 57 | */ |
| 58 | 58 | public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false){ |
| 59 | 59 | if(!$this->hasListeners($name, ($object))){ |
@@ -32,9 +32,9 @@ discard block |
||
| 32 | 32 | $this->getListeners( |
| 33 | 33 | $name, |
| 34 | 34 | $object |
| 35 | - ), |
|
| 36 | - $object->getContent() |
|
| 37 | - ); |
|
| 35 | + ), |
|
| 36 | + $object->getContent() |
|
| 37 | + ); |
|
| 38 | 38 | }else{ |
| 39 | 39 | throw new \InvalidArgumentException('instance of \PEIP\INF\Event\Event must contain subject'); |
| 40 | 40 | } |
@@ -43,18 +43,18 @@ discard block |
||
| 43 | 43 | } |
| 44 | 44 | } //put your code here |
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * Creates an event-object with given object as content/subject and notifies |
|
| 48 | - * all registers listeners of the event. |
|
| 49 | - * |
|
| 50 | - * @access public |
|
| 51 | - * @param string $name name of the event |
|
| 52 | - * @param object $object the subject of the event |
|
| 53 | - * @param array $headers headers of the event-object as key/value pairs |
|
| 54 | - * @param string $eventClass event-class to create instances from |
|
| 55 | - * @return |
|
| 56 | - * @see EventBuilder |
|
| 57 | - */ |
|
| 46 | + /** |
|
| 47 | + * Creates an event-object with given object as content/subject and notifies |
|
| 48 | + * all registers listeners of the event. |
|
| 49 | + * |
|
| 50 | + * @access public |
|
| 51 | + * @param string $name name of the event |
|
| 52 | + * @param object $object the subject of the event |
|
| 53 | + * @param array $headers headers of the event-object as key/value pairs |
|
| 54 | + * @param string $eventClass event-class to create instances from |
|
| 55 | + * @return |
|
| 56 | + * @see EventBuilder |
|
| 57 | + */ |
|
| 58 | 58 | public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false){ |
| 59 | 59 | if(!$this->hasListeners($name, ($object))){ |
| 60 | 60 | return false; |
@@ -25,9 +25,9 @@ discard block |
||
| 25 | 25 | * @param \PEIP\INF\Event\Event $object an event object |
| 26 | 26 | * @return boolean |
| 27 | 27 | */ |
| 28 | - public function notify($name, $object){ |
|
| 29 | - if($object instanceof \PEIP\INF\Event\Event){ |
|
| 30 | - if(is_object($object->getContent())){ |
|
| 28 | + public function notify($name, $object) { |
|
| 29 | + if ($object instanceof \PEIP\INF\Event\Event) { |
|
| 30 | + if (is_object($object->getContent())) { |
|
| 31 | 31 | return self::doNotify( |
| 32 | 32 | $this->getListeners( |
| 33 | 33 | $name, |
@@ -35,10 +35,10 @@ discard block |
||
| 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 |
@@ -55,8 +55,8 @@ discard block |
||
| 55 | 55 | * @return |
| 56 | 56 | * @see EventBuilder |
| 57 | 57 | */ |
| 58 | - public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false){ |
|
| 59 | - if(!$this->hasListeners($name, ($object))){ |
|
| 58 | + public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false) { |
|
| 59 | + if (!$this->hasListeners($name, ($object))) { |
|
| 60 | 60 | return false; |
| 61 | 61 | } |
| 62 | 62 | |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | * @param object $object object to check for listeners |
| 80 | 80 | * @return boolean |
| 81 | 81 | */ |
| 82 | - public function hasListeners($name, $object){ |
|
| 82 | + public function hasListeners($name, $object) { |
|
| 83 | 83 | return parent::hasListeners( |
| 84 | 84 | $name, |
| 85 | 85 | ReflectionPool::getInstance($object) |
@@ -35,10 +35,10 @@ |
||
| 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 |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | * @access public |
| 39 | 39 | * @param string $name name of the event |
| 40 | 40 | * @param \PEIP\INF\Event\Event $object an event object |
| 41 | - * @return boolean |
|
| 41 | + * @return boolean|null |
|
| 42 | 42 | */ |
| 43 | 43 | public function notify($name, $object){ |
| 44 | 44 | if($object instanceof \PEIP\INF\Event\Event){ |
@@ -40,16 +40,16 @@ discard block |
||
| 40 | 40 | * @param \PEIP\INF\Event\Event $object an event object |
| 41 | 41 | * @return boolean |
| 42 | 42 | */ |
| 43 | - public function notify($name, $object){ |
|
| 44 | - if($object instanceof \PEIP\INF\Event\Event){ |
|
| 45 | - if(is_object($object->getContent())){ |
|
| 46 | - if($this->hasListeners($name, $object->getContent())){ |
|
| 43 | + public function notify($name, $object) { |
|
| 44 | + if ($object instanceof \PEIP\INF\Event\Event) { |
|
| 45 | + if (is_object($object->getContent())) { |
|
| 46 | + if ($this->hasListeners($name, $object->getContent())) { |
|
| 47 | 47 | return self::doNotify($this->getListeners($name, $object->getContent()), $object); |
| 48 | 48 | } |
| 49 | - }else{ |
|
| 49 | + }else { |
|
| 50 | 50 | throw new \InvalidArgumentException('instance of \PEIP\INF\Event\Event must contain subject'); |
| 51 | 51 | } |
| 52 | - }else{ |
|
| 52 | + }else { |
|
| 53 | 53 | throw new \InvalidArgumentException('object must be instance of \PEIP\INF\Event\Event'); |
| 54 | 54 | } |
| 55 | 55 | } |
@@ -66,8 +66,8 @@ discard block |
||
| 66 | 66 | * @return |
| 67 | 67 | * @see EventBuilder |
| 68 | 68 | */ |
| 69 | - public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false){ |
|
| 70 | - if(!$this->hasListeners($name, $object)){ |
|
| 69 | + public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false) { |
|
| 70 | + if (!$this->hasListeners($name, $object)) { |
|
| 71 | 71 | return false; |
| 72 | 72 | } |
| 73 | 73 | $event = EventBuilder::getInstance($eventClass)->build( |
@@ -46,10 +46,10 @@ |
||
| 46 | 46 | if($this->hasListeners($name, $object->getContent())){ |
| 47 | 47 | return self::doNotify($this->getListeners($name, $object->getContent()), $object); |
| 48 | 48 | } |
| 49 | - }else{ |
|
| 49 | + } else{ |
|
| 50 | 50 | throw new \InvalidArgumentException('instance of \PEIP\INF\Event\Event must contain subject'); |
| 51 | 51 | } |
| 52 | - }else{ |
|
| 52 | + } else{ |
|
| 53 | 53 | throw new \InvalidArgumentException('object must be instance of \PEIP\INF\Event\Event'); |
| 54 | 54 | } |
| 55 | 55 | } |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | * @access public |
| 163 | 163 | * @param $name |
| 164 | 164 | * @param $subject |
| 165 | - * @return mixed |
|
| 165 | + * @return \PEIP\INF\Handler\Handler |
|
| 166 | 166 | */ |
| 167 | 167 | public function notifyUntil($name, $subject){ |
| 168 | 168 | if($this->hasListeners($name, $subject)){ |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | * @access protected |
| 206 | 206 | * @param $name |
| 207 | 207 | * @param $object |
| 208 | - * @return boolean |
|
| 208 | + * @return boolean|null |
|
| 209 | 209 | */ |
| 210 | 210 | protected static function doNotify(array $listeners, $subject){ |
| 211 | 211 | foreach($listeners as $listener){ |
@@ -209,11 +209,11 @@ |
||
| 209 | 209 | */ |
| 210 | 210 | protected static function doNotify(array $listeners, $subject){ |
| 211 | 211 | foreach($listeners as $listener){ |
| 212 | - if($listener instanceof \PEIP\INF\Handler\Handler){ |
|
| 212 | + if($listener instanceof \PEIP\INF\Handler\Handler){ |
|
| 213 | 213 | $listener->handle($subject); |
| 214 | - }elseif(is_callable($listener)){ |
|
| 215 | - call_user_func($listener, $subject); |
|
| 216 | - } |
|
| 214 | + }elseif(is_callable($listener)){ |
|
| 215 | + call_user_func($listener, $subject); |
|
| 216 | + } |
|
| 217 | 217 | } |
| 218 | 218 | } |
| 219 | 219 | |
@@ -43,13 +43,13 @@ discard block |
||
| 43 | 43 | * @param Callable|PEIP\INF\Handler\Handler $listener event-handler |
| 44 | 44 | * @return boolean |
| 45 | 45 | */ |
| 46 | - public function connect($name, $object, $listener){ |
|
| 46 | + public function connect($name, $object, $listener) { |
|
| 47 | 47 | Test::ensureHandler($listener); |
| 48 | 48 | $listners = $this->doGetListeners(); |
| 49 | - if (!$this->listeners->contains($object)){ |
|
| 49 | + if (!$this->listeners->contains($object)) { |
|
| 50 | 50 | $this->listeners->attach($object, new \ArrayObject); |
| 51 | 51 | } |
| 52 | - if (!array_key_exists($name, $listners[$object])){ |
|
| 52 | + if (!array_key_exists($name, $listners[$object])) { |
|
| 53 | 53 | $this->listeners[$object][$name] = array(); |
| 54 | 54 | } |
| 55 | 55 | $hash = $this->getListenerHash($listener); |
@@ -67,14 +67,14 @@ discard block |
||
| 67 | 67 | * @param \PEIP\INF\Handler\Handler $listener event-handler |
| 68 | 68 | * @return boolean |
| 69 | 69 | */ |
| 70 | - public function disconnect($name, $object, $listener){ |
|
| 70 | + public function disconnect($name, $object, $listener) { |
|
| 71 | 71 | $listners = $this->doGetListeners(); |
| 72 | - if (!$listners->contains($object) || !isset($listners[$object][$name])){ |
|
| 72 | + if (!$listners->contains($object) || !isset($listners[$object][$name])) { |
|
| 73 | 73 | return false; |
| 74 | 74 | } |
| 75 | 75 | $eventListeners = $listners[$object][$name]; |
| 76 | 76 | $hash = $this->getListenerHash($listener); |
| 77 | - if(isset($eventListeners[$hash])){ |
|
| 77 | + if (isset($eventListeners[$hash])) { |
|
| 78 | 78 | unset($eventListeners[$hash]); |
| 79 | 79 | |
| 80 | 80 | $listners[$object][$name] = $eventListeners; |
@@ -83,10 +83,10 @@ discard block |
||
| 83 | 83 | return false; |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - public function disconnectAll($name, $object){ |
|
| 87 | - if(is_object($object)){ |
|
| 86 | + public function disconnectAll($name, $object) { |
|
| 87 | + if (is_object($object)) { |
|
| 88 | 88 | $listners = $this->doGetListeners(); |
| 89 | - if($listners && $this->hadListeners($name, $object)){ |
|
| 89 | + if ($listners && $this->hadListeners($name, $object)) { |
|
| 90 | 90 | $listners[$object][$name] = array(); |
| 91 | 91 | } |
| 92 | 92 | } |
@@ -100,13 +100,13 @@ discard block |
||
| 100 | 100 | * @param object $object object to check for listeners |
| 101 | 101 | * @return boolean |
| 102 | 102 | */ |
| 103 | - public function hasListeners($name, $object){ |
|
| 103 | + public function hasListeners($name, $object) { |
|
| 104 | 104 | $listners = $this->doGetListeners(); |
| 105 | - if (!$this->hadListeners($name, $object)){ |
|
| 105 | + if (!$this->hadListeners($name, $object)) { |
|
| 106 | 106 | $res = false; |
| 107 | - }else{ |
|
| 107 | + }else { |
|
| 108 | 108 | $listners = $this->doGetListeners(); |
| 109 | - $res = (boolean) count($listners[$object][$name]); |
|
| 109 | + $res = (boolean)count($listners[$object][$name]); |
|
| 110 | 110 | } |
| 111 | 111 | return $res; |
| 112 | 112 | } |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | * @param object $object object to check for listeners |
| 120 | 120 | * @return boolean |
| 121 | 121 | */ |
| 122 | - public function hadListeners($name, $object){ |
|
| 122 | + public function hadListeners($name, $object) { |
|
| 123 | 123 | $listners = $this->doGetListeners(); |
| 124 | 124 | return ($listners->contains($object) && isset($listners[$object][$name])) ? true : false; |
| 125 | 125 | } |
@@ -131,9 +131,9 @@ discard block |
||
| 131 | 131 | * @param object $object object to get event-names for |
| 132 | 132 | * @return string[] array of event-names |
| 133 | 133 | */ |
| 134 | - public function getEventNames($object){ |
|
| 134 | + public function getEventNames($object) { |
|
| 135 | 135 | $listeners = $this->doGetListeners(); |
| 136 | - if (!$listeners->contains($object)){ |
|
| 136 | + if (!$listeners->contains($object)) { |
|
| 137 | 137 | return array(); |
| 138 | 138 | } |
| 139 | 139 | return array_keys($listeners[$object]->getArrayCopy()); |
@@ -147,8 +147,8 @@ discard block |
||
| 147 | 147 | * @param $object |
| 148 | 148 | * @return boolean |
| 149 | 149 | */ |
| 150 | - public function notify($name, $object){ |
|
| 151 | - if($this->hasListeners($name, $object)){ |
|
| 150 | + public function notify($name, $object) { |
|
| 151 | + if ($this->hasListeners($name, $object)) { |
|
| 152 | 152 | $listners = $this->doGetListeners(); |
| 153 | 153 | self::doNotify($listners[$object][$name], $object); |
| 154 | 154 | } |
@@ -164,8 +164,8 @@ discard block |
||
| 164 | 164 | * @param $subject |
| 165 | 165 | * @return mixed |
| 166 | 166 | */ |
| 167 | - public function notifyUntil($name, $subject){ |
|
| 168 | - if($this->hasListeners($name, $subject)){ |
|
| 167 | + public function notifyUntil($name, $subject) { |
|
| 168 | + if ($this->hasListeners($name, $subject)) { |
|
| 169 | 169 | $res = self::doNotifyUntil($this->getListeners($name, $subject), $subject); |
| 170 | 170 | } |
| 171 | 171 | return $res; |
@@ -179,8 +179,8 @@ discard block |
||
| 179 | 179 | * @param object $object object to check for listeners |
| 180 | 180 | * @return array array of listeners |
| 181 | 181 | */ |
| 182 | - public function getListeners($name, $object){ |
|
| 183 | - if (!$this->hadListeners($name, $object)){ |
|
| 182 | + public function getListeners($name, $object) { |
|
| 183 | + if (!$this->hadListeners($name, $object)) { |
|
| 184 | 184 | return array(); |
| 185 | 185 | } |
| 186 | 186 | $listeners = $this->listeners[$object]->getArrayCopy(); |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | * @access protected |
| 195 | 195 | * @return ObjectStorage |
| 196 | 196 | */ |
| 197 | - protected function doGetListeners(){ |
|
| 197 | + protected function doGetListeners() { |
|
| 198 | 198 | return isset($this->listeners) ? $this->listeners : $this->listeners = new ObjectStorage(); |
| 199 | 199 | } |
| 200 | 200 | |
@@ -207,11 +207,11 @@ discard block |
||
| 207 | 207 | * @param $object |
| 208 | 208 | * @return boolean |
| 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 | } |
@@ -226,12 +226,12 @@ discard block |
||
| 226 | 226 | * @param $object |
| 227 | 227 | * @return \PEIP\INF\Handler\Handler the listener which returned a boolean true value |
| 228 | 228 | */ |
| 229 | - protected static function doNotifyUntil(array $listeners, $subject){ |
|
| 229 | + protected static function doNotifyUntil(array $listeners, $subject) { |
|
| 230 | 230 | $res = NULL; |
| 231 | - foreach ($listeners as $listener){ |
|
| 232 | - if($listener instanceof \PEIP\INF\Handler\Handler){ |
|
| 231 | + foreach ($listeners as $listener) { |
|
| 232 | + if ($listener instanceof \PEIP\INF\Handler\Handler) { |
|
| 233 | 233 | $res = $listener->handle($subject); |
| 234 | - if ($res){ |
|
| 234 | + if ($res) { |
|
| 235 | 235 | return $listener; |
| 236 | 236 | } |
| 237 | 237 | } |
@@ -239,8 +239,8 @@ discard block |
||
| 239 | 239 | return $res; |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | - protected function getListenerHash($listener){ |
|
| 243 | - if(!is_object($listener)){ |
|
| 242 | + protected function getListenerHash($listener) { |
|
| 243 | + if (!is_object($listener)) { |
|
| 244 | 244 | $o = new \stdClass(); |
| 245 | 245 | $o->listener = $listener; |
| 246 | 246 | $listener = $o; |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | $listners = $this->doGetListeners(); |
| 105 | 105 | if (!$this->hadListeners($name, $object)){ |
| 106 | 106 | $res = false; |
| 107 | - }else{ |
|
| 107 | + } else{ |
|
| 108 | 108 | $listners = $this->doGetListeners(); |
| 109 | 109 | $res = (boolean) count($listners[$object][$name]); |
| 110 | 110 | } |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | foreach($listeners as $listener){ |
| 212 | 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 | } |
@@ -49,7 +49,6 @@ |
||
| 49 | 49 | * @access public |
| 50 | 50 | * @param mixed $subject the subject for the event |
| 51 | 51 | * @param string $name the name of the event |
| 52 | - * @param array|ArrayAccess $headers the headers for the event |
|
| 53 | 52 | */ |
| 54 | 53 | public function __construct($subject, $name, $parameters = array(), $type = false){ |
| 55 | 54 | parent::__construct($subject, Test::ensureArrayAccess($parameters)); |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | * @param string $name the name of the event |
| 52 | 52 | * @param array|ArrayAccess $headers the headers for the event |
| 53 | 53 | */ |
| 54 | - public function __construct($subject, $name, $parameters = array(), $type = false){ |
|
| 54 | + public function __construct($subject, $name, $parameters = array(), $type = false) { |
|
| 55 | 55 | parent::__construct($subject, Test::ensureArrayAccess($parameters)); |
| 56 | 56 | $this->name = $name; |
| 57 | 57 | $this->type = $type ? $type : get_class($this); |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | * @access public |
| 64 | 64 | * @return string the name of the event |
| 65 | 65 | */ |
| 66 | - public function getName(){ |
|
| 66 | + public function getName() { |
|
| 67 | 67 | return $this->name; |
| 68 | 68 | } |
| 69 | 69 | |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | * @access public |
| 75 | 75 | * @return string the type of the event |
| 76 | 76 | */ |
| 77 | - public function getType(){ |
|
| 77 | + public function getType() { |
|
| 78 | 78 | return $this->name; |
| 79 | 79 | } |
| 80 | 80 | |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | * @access public |
| 85 | 85 | * @param mixed $value the return-value to set |
| 86 | 86 | */ |
| 87 | - public function setReturnValue($value){ |
|
| 87 | + public function setReturnValue($value) { |
|
| 88 | 88 | $this->value = $value; |
| 89 | 89 | } |
| 90 | 90 | |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * @access public |
| 95 | 95 | * @return mixed the return-value to set |
| 96 | 96 | */ |
| 97 | - public function getReturnValue(){ |
|
| 97 | + public function getReturnValue() { |
|
| 98 | 98 | return $this->value; |
| 99 | 99 | } |
| 100 | 100 | |
@@ -104,8 +104,8 @@ discard block |
||
| 104 | 104 | * @access public |
| 105 | 105 | * @param boolean $processed |
| 106 | 106 | */ |
| 107 | - public function setProcessed($processed){ |
|
| 108 | - $this->processed = (boolean) $processed; |
|
| 107 | + public function setProcessed($processed) { |
|
| 108 | + $this->processed = (boolean)$processed; |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | /** |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | * @access public |
| 115 | 115 | * @return boolean wether the event is processed |
| 116 | 116 | */ |
| 117 | - public function isProcessed(){ |
|
| 117 | + public function isProcessed() { |
|
| 118 | 118 | return $this->processed; |
| 119 | 119 | } |
| 120 | 120 | |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | * @access public |
| 125 | 125 | * @return mixed the subject/content |
| 126 | 126 | */ |
| 127 | - public function getSubject(){ |
|
| 127 | + public function getSubject() { |
|
| 128 | 128 | return $this->getContent(); |
| 129 | 129 | } |
| 130 | 130 | } |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | * @see GenericBuilder |
| 72 | 72 | * @static |
| 73 | 73 | * @access protected |
| 74 | - * @param object $className name of class to build instance for. |
|
| 74 | + * @param string $className name of class to build instance for. |
|
| 75 | 75 | * @param array $arguments arguments for the constructor |
| 76 | 76 | * @return object build and modified srvice instance |
| 77 | 77 | */ |
@@ -16,13 +16,13 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -23,11 +23,11 @@ discard block |
||
| 23 | 23 | * @param $config configuration of the service |
| 24 | 24 | * @return object the initialized service instance |
| 25 | 25 | */ |
| 26 | - public static function createService(array $config){ |
|
| 26 | + public static function createService(array $config) { |
|
| 27 | 27 | $args = array(); |
| 28 | 28 | //build arguments for constructor |
| 29 | - if(isset($config['constructor_arg'])){ |
|
| 30 | - foreach($config['constructor_arg'] as $arg){ |
|
| 29 | + if (isset($config['constructor_arg'])) { |
|
| 30 | + foreach ($config['constructor_arg'] as $arg) { |
|
| 31 | 31 | $args[] = self::buildArg($arg); |
| 32 | 32 | } |
| 33 | 33 | } |
@@ -44,21 +44,21 @@ discard block |
||
| 44 | 44 | * @param string $defaultClass class to create instance for if none is set in config |
| 45 | 45 | * @return object build and modified srvice instance |
| 46 | 46 | */ |
| 47 | - public static function doBuild($config, $arguments, $defaultClass = false){ |
|
| 47 | + public static function doBuild($config, $arguments, $defaultClass = false) { |
|
| 48 | 48 | $cls = isset($config["class"]) ? trim((string)$config["class"]) : (string)$defaultClass; |
| 49 | - if($cls != ''){ |
|
| 49 | + if ($cls != '') { |
|
| 50 | 50 | try { |
| 51 | - $constructor = isset($config["constructor"])?(string)$config["constructor"]:""; |
|
| 52 | - if($constructor != '' && Test::assertMethod($cls, $constructor)){ |
|
| 51 | + $constructor = isset($config["constructor"]) ? (string)$config["constructor"] : ""; |
|
| 52 | + if ($constructor != '' && Test::assertMethod($cls, $constructor)) { |
|
| 53 | 53 | $service = call_user_func_array(array($cls, $constructor), $arguments); |
| 54 | - }else{ |
|
| 54 | + }else { |
|
| 55 | 55 | $service = self::build($cls, $arguments); |
| 56 | 56 | } |
| 57 | - }catch(\Exception $e){ |
|
| 57 | + } catch (\Exception $e) { |
|
| 58 | 58 | throw new \RuntimeException('Could not create Service "'.$cls.'" -> '.$e->getMessage()); |
| 59 | 59 | } |
| 60 | 60 | } |
| 61 | - if(is_object($service)){ |
|
| 61 | + if (is_object($service)) { |
|
| 62 | 62 | return $service; |
| 63 | 63 | } |
| 64 | 64 | throw new \RuntimeException('Could not create Service "'.$cls.'". Class does not exist.'); |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | * @param array $arguments arguments for the constructor |
| 76 | 76 | * @return object build and modified srvice instance |
| 77 | 77 | */ |
| 78 | - public static function build($className, $arguments){ |
|
| 78 | + public static function build($className, $arguments) { |
|
| 79 | 79 | return GenericBuilder::getInstance($className)->build($arguments); |
| 80 | 80 | } |
| 81 | 81 | |
@@ -86,29 +86,29 @@ discard block |
||
| 86 | 86 | * @param object $config configuration object to create argument from. |
| 87 | 87 | * @return mixed build argument |
| 88 | 88 | */ |
| 89 | - protected function buildArg($config){ |
|
| 90 | - if(trim((string)$config['value']) != ''){ |
|
| 89 | + protected function buildArg($config) { |
|
| 90 | + if (trim((string)$config['value']) != '') { |
|
| 91 | 91 | $arg = (string)$config['value']; |
| 92 | - }elseif($config->getName() == 'value'){ |
|
| 92 | + }elseif ($config->getName() == 'value') { |
|
| 93 | 93 | $arg = (string)$config; |
| 94 | - }elseif($config->getName() == 'list'){ |
|
| 94 | + }elseif ($config->getName() == 'list') { |
|
| 95 | 95 | $arg = array(); |
| 96 | - foreach($config->children() as $entry){ |
|
| 97 | - if($entry->getName() == 'value'){ |
|
| 98 | - if($entry['key']){ |
|
| 96 | + foreach ($config->children() as $entry) { |
|
| 97 | + if ($entry->getName() == 'value') { |
|
| 98 | + if ($entry['key']) { |
|
| 99 | 99 | $arg[(string)$entry['key']] = (string)$entry; |
| 100 | - }else{ |
|
| 100 | + }else { |
|
| 101 | 101 | $arg[] = (string)$entry; |
| 102 | 102 | } |
| 103 | - }elseif($entry->getName() == 'service'){ |
|
| 103 | + }elseif ($entry->getName() == 'service') { |
|
| 104 | 104 | $arg[] = $this->provideService($entry); |
| 105 | 105 | } |
| 106 | 106 | } |
| 107 | - }elseif($config->getName() == 'service'){ |
|
| 107 | + }elseif ($config->getName() == 'service') { |
|
| 108 | 108 | $arg = self::provideService($config); |
| 109 | - }elseif($config->list){ |
|
| 109 | + }elseif ($config->list) { |
|
| 110 | 110 | $arg = $this->buildArg($config->list); |
| 111 | - }elseif($config->service){ |
|
| 111 | + }elseif ($config->service) { |
|
| 112 | 112 | $arg = $this->buildArg($config->service); |
| 113 | 113 | } |
| 114 | 114 | return $arg; |
@@ -126,24 +126,24 @@ discard block |
||
| 126 | 126 | * @param string $defaultClass class to create instance for if none is set in config |
| 127 | 127 | * @return object build and modified srvice instance |
| 128 | 128 | */ |
| 129 | - public static function buildAndModify(array $config, $arguments, $defaultClass = ""){ |
|
| 130 | - if((isset($config["class"]) && "" != (string)$config["class"]) || $defaultClass !== ""){ |
|
| 129 | + public static function buildAndModify(array $config, $arguments, $defaultClass = "") { |
|
| 130 | + if ((isset($config["class"]) && "" != (string)$config["class"]) || $defaultClass !== "") { |
|
| 131 | 131 | $service = ServiceFactory::doBuild($config, $arguments, $defaultClass); |
| 132 | - }else{ |
|
| 132 | + }else { |
|
| 133 | 133 | throw new \RuntimeException('Could not create Service. no class or reference given.'); |
| 134 | 134 | } |
| 135 | - if(isset($config["ref_property"])){ |
|
| 135 | + if (isset($config["ref_property"])) { |
|
| 136 | 136 | $service = $service->{(string)$config["ref_property"]}; |
| 137 | - }elseif(isset($config["ref_method"])){ |
|
| 137 | + }elseif (isset($config["ref_method"])) { |
|
| 138 | 138 | $args = array(); |
| 139 | - if(isset($config['argument'])){ |
|
| 140 | - foreach($config['argument'] as $arg){ |
|
| 139 | + if (isset($config['argument'])) { |
|
| 140 | + foreach ($config['argument'] as $arg) { |
|
| 141 | 141 | $args[] = $this->buildArg($arg); |
| 142 | 142 | } |
| 143 | 143 | } |
| 144 | 144 | $service = call_user_func_array(array($service, (string)$config["ref_method"]), $args); |
| 145 | 145 | } |
| 146 | - if(!is_object($service)){ |
|
| 146 | + if (!is_object($service)) { |
|
| 147 | 147 | throw new \RuntimeException('Could not create Service.'); |
| 148 | 148 | } |
| 149 | 149 | $service = self::modifyService($service, $config); |
@@ -165,29 +165,29 @@ discard block |
||
| 165 | 165 | * @param object $config configuration to get the modification instructions from. |
| 166 | 166 | * @return object the modificated service |
| 167 | 167 | */ |
| 168 | - protected function modifyService($service, $config){ |
|
| 168 | + protected function modifyService($service, $config) { |
|
| 169 | 169 | $config = is_array($config) ? new \ArrayObject($config) : $config; |
| 170 | 170 | // set instance properties |
| 171 | - if(isset($config->property)){ |
|
| 172 | - foreach($config->property as $property){ |
|
| 171 | + if (isset($config->property)) { |
|
| 172 | + foreach ($config->property as $property) { |
|
| 173 | 173 | $arg = $this->buildArg($property); |
| 174 | - if($arg){ |
|
| 174 | + if ($arg) { |
|
| 175 | 175 | $setter = self::getSetter($property); |
| 176 | - if($setter && self::hasPublicProperty($service, 'Method', $setter)){ |
|
| 176 | + if ($setter && self::hasPublicProperty($service, 'Method', $setter)) { |
|
| 177 | 177 | $service->{$setter}($arg); |
| 178 | - }elseif(in_array($property, self::hasPublicProperty($service, 'Property', $setter))){ |
|
| 178 | + }elseif (in_array($property, self::hasPublicProperty($service, 'Property', $setter))) { |
|
| 179 | 179 | $service->$setter = $arg; |
| 180 | 180 | } |
| 181 | 181 | } |
| 182 | 182 | } |
| 183 | 183 | } |
| 184 | 184 | // call instance methods |
| 185 | - if(isset($config->action)){ |
|
| 186 | - foreach($config->action as $action){ |
|
| 185 | + if (isset($config->action)) { |
|
| 186 | + foreach ($config->action as $action) { |
|
| 187 | 187 | $method = (string)$action['method'] != '' ? (string)$action['method'] : NULL; |
| 188 | - if($method && self::hasPublicProperty($service, 'Method', $method)){ |
|
| 188 | + if ($method && self::hasPublicProperty($service, 'Method', $method)) { |
|
| 189 | 189 | $args = array(); |
| 190 | - foreach($action->children() as $argument){ |
|
| 190 | + foreach ($action->children() as $argument) { |
|
| 191 | 191 | $args[] = $this->buildArg($argument); |
| 192 | 192 | } |
| 193 | 193 | call_user_func_array(array($service, (string)$action['method']), $args); |
@@ -195,9 +195,9 @@ discard block |
||
| 195 | 195 | } |
| 196 | 196 | } |
| 197 | 197 | // register instance listeners |
| 198 | - if($service instanceof \PEIP\INF\Event\Connectable){ |
|
| 199 | - if(isset($config->listener)){ |
|
| 200 | - foreach($config->listener as $listenerConf){ |
|
| 198 | + if ($service instanceof \PEIP\INF\Event\Connectable) { |
|
| 199 | + if (isset($config->listener)) { |
|
| 200 | + foreach ($config->listener as $listenerConf) { |
|
| 201 | 201 | $event = (string)$listenerConf['event']; |
| 202 | 202 | $listener = $this->provideService($listenerConf); |
| 203 | 203 | $service->connect($event, $listener); |
@@ -51,10 +51,10 @@ discard block |
||
| 51 | 51 | $constructor = isset($config["constructor"])?(string)$config["constructor"]:""; |
| 52 | 52 | if($constructor != '' && Test::assertMethod($cls, $constructor)){ |
| 53 | 53 | $service = call_user_func_array(array($cls, $constructor), $arguments); |
| 54 | - }else{ |
|
| 54 | + } else{ |
|
| 55 | 55 | $service = self::build($cls, $arguments); |
| 56 | 56 | } |
| 57 | - }catch(\Exception $e){ |
|
| 57 | + } catch(\Exception $e){ |
|
| 58 | 58 | throw new \RuntimeException('Could not create Service "'.$cls.'" -> '.$e->getMessage()); |
| 59 | 59 | } |
| 60 | 60 | } |
@@ -89,26 +89,26 @@ discard block |
||
| 89 | 89 | protected function buildArg($config){ |
| 90 | 90 | if(trim((string)$config['value']) != ''){ |
| 91 | 91 | $arg = (string)$config['value']; |
| 92 | - }elseif($config->getName() == 'value'){ |
|
| 92 | + } elseif($config->getName() == 'value'){ |
|
| 93 | 93 | $arg = (string)$config; |
| 94 | - }elseif($config->getName() == 'list'){ |
|
| 94 | + } elseif($config->getName() == 'list'){ |
|
| 95 | 95 | $arg = array(); |
| 96 | 96 | foreach($config->children() as $entry){ |
| 97 | 97 | if($entry->getName() == 'value'){ |
| 98 | 98 | if($entry['key']){ |
| 99 | 99 | $arg[(string)$entry['key']] = (string)$entry; |
| 100 | - }else{ |
|
| 100 | + } else{ |
|
| 101 | 101 | $arg[] = (string)$entry; |
| 102 | 102 | } |
| 103 | - }elseif($entry->getName() == 'service'){ |
|
| 103 | + } elseif($entry->getName() == 'service'){ |
|
| 104 | 104 | $arg[] = $this->provideService($entry); |
| 105 | 105 | } |
| 106 | 106 | } |
| 107 | - }elseif($config->getName() == 'service'){ |
|
| 107 | + } elseif($config->getName() == 'service'){ |
|
| 108 | 108 | $arg = self::provideService($config); |
| 109 | - }elseif($config->list){ |
|
| 109 | + } elseif($config->list){ |
|
| 110 | 110 | $arg = $this->buildArg($config->list); |
| 111 | - }elseif($config->service){ |
|
| 111 | + } elseif($config->service){ |
|
| 112 | 112 | $arg = $this->buildArg($config->service); |
| 113 | 113 | } |
| 114 | 114 | return $arg; |
@@ -129,12 +129,12 @@ discard block |
||
| 129 | 129 | public static function buildAndModify(array $config, $arguments, $defaultClass = ""){ |
| 130 | 130 | if((isset($config["class"]) && "" != (string)$config["class"]) || $defaultClass !== ""){ |
| 131 | 131 | $service = ServiceFactory::doBuild($config, $arguments, $defaultClass); |
| 132 | - }else{ |
|
| 132 | + } else{ |
|
| 133 | 133 | throw new \RuntimeException('Could not create Service. no class or reference given.'); |
| 134 | 134 | } |
| 135 | 135 | if(isset($config["ref_property"])){ |
| 136 | 136 | $service = $service->{(string)$config["ref_property"]}; |
| 137 | - }elseif(isset($config["ref_method"])){ |
|
| 137 | + } elseif(isset($config["ref_method"])){ |
|
| 138 | 138 | $args = array(); |
| 139 | 139 | if(isset($config['argument'])){ |
| 140 | 140 | foreach($config['argument'] as $arg){ |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | $setter = self::getSetter($property); |
| 176 | 176 | if($setter && self::hasPublicProperty($service, 'Method', $setter)){ |
| 177 | 177 | $service->{$setter}($arg); |
| 178 | - }elseif(in_array($property, self::hasPublicProperty($service, 'Property', $setter))){ |
|
| 178 | + } elseif(in_array($property, self::hasPublicProperty($service, 'Property', $setter))){ |
|
| 179 | 179 | $service->$setter = $arg; |
| 180 | 180 | } |
| 181 | 181 | } |
@@ -55,7 +55,6 @@ discard block |
||
| 55 | 55 | * sets the channel to send requests from the gateway |
| 56 | 56 | * |
| 57 | 57 | * @access public |
| 58 | - * @param \PEIP\INF\Channel\Channel $replyChannel The default channel to receive requests from the gateway |
|
| 59 | 58 | * @return |
| 60 | 59 | */ |
| 61 | 60 | public function setRequestChannel(\PEIP\INF\Channel\Channel $requestChannel){ |
@@ -108,7 +107,7 @@ discard block |
||
| 108 | 107 | * sends and receives a request/message through the gateway |
| 109 | 108 | * |
| 110 | 109 | * @access public |
| 111 | - * @param mixed $content the content/payload for the message to send |
|
| 110 | + * @param \Order $content the content/payload for the message to send |
|
| 112 | 111 | * @return mixed content/payload of the received message |
| 113 | 112 | */ |
| 114 | 113 | public function sendAndReceive($content){ |
@@ -42,9 +42,9 @@ discard block |
||
| 42 | 42 | * @param \PEIP\INF\Channel\PollableChannel $replyChannel The default channel to receive requests from the gateway |
| 43 | 43 | * @param array $defaultHeaders The default headers to apply to request messages |
| 44 | 44 | */ |
| 45 | - public function __construct(\PEIP\INF\Channel\Channel $requestChannel, \PEIP\INF\Channel\Channel $replyChannel = NULL, array $defaultHeaders = array()){ |
|
| 45 | + public function __construct(\PEIP\INF\Channel\Channel $requestChannel, \PEIP\INF\Channel\Channel $replyChannel = NULL, array $defaultHeaders = array()) { |
|
| 46 | 46 | $this->setRequestChannel($requestChannel); |
| 47 | - if($replyChannel){ |
|
| 47 | + if ($replyChannel) { |
|
| 48 | 48 | $this->setReplyChannel($replyChannel); |
| 49 | 49 | } |
| 50 | 50 | $this->defaultHeaders = $defaultHeaders; |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * @param \PEIP\INF\Channel\Channel $replyChannel The default channel to receive requests from the gateway |
| 59 | 59 | * @return |
| 60 | 60 | */ |
| 61 | - public function setRequestChannel(\PEIP\INF\Channel\Channel $requestChannel){ |
|
| 61 | + public function setRequestChannel(\PEIP\INF\Channel\Channel $requestChannel) { |
|
| 62 | 62 | $this->requestChannel = $requestChannel; |
| 63 | 63 | } |
| 64 | 64 | |
@@ -69,8 +69,8 @@ discard block |
||
| 69 | 69 | * @param \PEIP\INF\Channel\PollableChannel $replyChannel The default channel to receive requests from the gateway |
| 70 | 70 | * @return |
| 71 | 71 | */ |
| 72 | - public function setReplyChannel(\PEIP\INF\Channel\Channel $replyChannel){ |
|
| 73 | - if(!($replyChannel instanceof \PEIP\INF\Channel\PollableChannel)){ |
|
| 72 | + public function setReplyChannel(\PEIP\INF\Channel\Channel $replyChannel) { |
|
| 73 | + if (!($replyChannel instanceof \PEIP\INF\Channel\PollableChannel)) { |
|
| 74 | 74 | throw new \InvalidArgumentException('reply channel must be instance of \PEIP\INF\Channel\PollableChannel.'); |
| 75 | 75 | } |
| 76 | 76 | $this->replyChannel = $replyChannel; |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | * @param mixed $content the content/payload for the message to send |
| 84 | 84 | * @return |
| 85 | 85 | */ |
| 86 | - public function send($content){ |
|
| 86 | + public function send($content) { |
|
| 87 | 87 | return $this->requestChannel->send($this->buildMessage($content)); |
| 88 | 88 | } |
| 89 | 89 | |
@@ -93,12 +93,12 @@ discard block |
||
| 93 | 93 | * @access public |
| 94 | 94 | * @return mixed content/payload of the received message |
| 95 | 95 | */ |
| 96 | - public function receive(){ |
|
| 97 | - if(!isset($this->replyChannel)){ |
|
| 96 | + public function receive() { |
|
| 97 | + if (!isset($this->replyChannel)) { |
|
| 98 | 98 | throw new \LogicException('No replyChannel set.'); |
| 99 | 99 | } |
| 100 | 100 | $message = $this->replyChannel->receive(); |
| 101 | - if($message){ |
|
| 101 | + if ($message) { |
|
| 102 | 102 | return $message->getContent(); |
| 103 | 103 | } |
| 104 | 104 | return NULL; |
@@ -111,12 +111,12 @@ discard block |
||
| 111 | 111 | * @param mixed $content the content/payload for the message to send |
| 112 | 112 | * @return mixed content/payload of the received message |
| 113 | 113 | */ |
| 114 | - public function sendAndReceive($content){ |
|
| 114 | + public function sendAndReceive($content) { |
|
| 115 | 115 | $this->send($content); |
| 116 | 116 | try { |
| 117 | 117 | $res = $this->receive(); |
| 118 | 118 | } |
| 119 | - catch(\Exception $e){ |
|
| 119 | + catch (\Exception $e) { |
|
| 120 | 120 | return NULL; |
| 121 | 121 | } |
| 122 | 122 | return $res; |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | * @param mixed $content the content/payload for the message to send |
| 130 | 130 | * @return \PEIP\INF\Message\Message the built message |
| 131 | 131 | */ |
| 132 | - protected function buildMessage($content){ |
|
| 132 | + protected function buildMessage($content) { |
|
| 133 | 133 | return $this->getMessageBuilder()->setContent($content)->build(); |
| 134 | 134 | } |
| 135 | 135 | |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | * @access protected |
| 140 | 140 | * @return MessageBuilder message builder instance for the registerd message class |
| 141 | 141 | */ |
| 142 | - protected function getMessageBuilder(){ |
|
| 142 | + protected function getMessageBuilder() { |
|
| 143 | 143 | return isset($this->messageBuilder) && ($this->messageBuilder->getMessageClass() == $this->getMessageClass()) |
| 144 | 144 | ? $this->messageBuilder |
| 145 | 145 | : $this->messageBuilder = MessageBuilder::getInstance($this->messageClass)->setHeaders($this->defaultHeaders); |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | * @param string $messageClass message class to create instances from |
| 153 | 153 | * @return |
| 154 | 154 | */ |
| 155 | - public function setMessageClass($messageClass){ |
|
| 155 | + public function setMessageClass($messageClass) { |
|
| 156 | 156 | $this->messageClass = $messageClass; |
| 157 | 157 | } |
| 158 | 158 | |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | * @access public |
| 163 | 163 | * @return string message class to create instances from |
| 164 | 164 | */ |
| 165 | - public function getMessageClass(){ |
|
| 165 | + public function getMessageClass() { |
|
| 166 | 166 | return $this->messageClass; |
| 167 | 167 | } |
| 168 | 168 | |
@@ -115,8 +115,7 @@ |
||
| 115 | 115 | $this->send($content); |
| 116 | 116 | try { |
| 117 | 117 | $res = $this->receive(); |
| 118 | - } |
|
| 119 | - catch(\Exception $e){ |
|
| 118 | + } catch(\Exception $e){ |
|
| 120 | 119 | return NULL; |
| 121 | 120 | } |
| 122 | 121 | return $res; |