@@ -27,9 +27,9 @@ discard block |
||
27 | 27 | * @param Callable|PEIP\INF\Handler\Handler $listener event-handler |
28 | 28 | * @return boolean |
29 | 29 | */ |
30 | - public function connect($name, $object, $listener){ |
|
30 | + public function connect($name, $object, $listener) { |
|
31 | 31 | $class = is_object($object) ? get_class($object) : (string)$object; |
32 | - foreach(Reflection::getImplementedClassesAndInterfaces($object) as $cls){ |
|
32 | + foreach (Reflection::getImplementedClassesAndInterfaces($object) as $cls) { |
|
33 | 33 | $reflection = Reflection_Pool::getInstance($class); |
34 | 34 | parent::connect($name, $reflection, $listener); |
35 | 35 | } |
@@ -37,13 +37,13 @@ discard block |
||
37 | 37 | return true; |
38 | 38 | } |
39 | 39 | |
40 | - public function disconnect($name, $object, $listener){ |
|
40 | + public function disconnect($name, $object, $listener) { |
|
41 | 41 | $class = is_object($object) ? get_class($object) : (string)$object; |
42 | 42 | $res = true; |
43 | - foreach(Reflection::getImplementedClassesAndInterfaces($object) as $cls){ |
|
43 | + foreach (Reflection::getImplementedClassesAndInterfaces($object) as $cls) { |
|
44 | 44 | $reflection = Reflection_Pool::getInstance($class); |
45 | 45 | $r = parent::disconnect($name, $reflection, $listener); |
46 | - if(!$r){ |
|
46 | + if (!$r) { |
|
47 | 47 | $res = false; |
48 | 48 | } |
49 | 49 | } |
@@ -58,9 +58,9 @@ discard block |
||
58 | 58 | * @param \PEIP\INF\Event\Event $object an event object |
59 | 59 | * @return boolean |
60 | 60 | */ |
61 | - public function notify($name, $object){ |
|
62 | - if($object instanceof \PEIP\INF\Event\Event){ |
|
63 | - if(is_object($object->getContent())){ |
|
61 | + public function notify($name, $object) { |
|
62 | + if ($object instanceof \PEIP\INF\Event\Event) { |
|
63 | + if (is_object($object->getContent())) { |
|
64 | 64 | return self::doNotify( |
65 | 65 | $this->getListeners( |
66 | 66 | $name, |
@@ -70,10 +70,10 @@ discard block |
||
70 | 70 | ), |
71 | 71 | $object |
72 | 72 | ); |
73 | - }else{ |
|
73 | + }else { |
|
74 | 74 | throw new \InvalidArgumentException('instance of \PEIP\INF\Event\Event must contain subject'); |
75 | 75 | } |
76 | - }else{ |
|
76 | + }else { |
|
77 | 77 | throw new \InvalidArgumentException('object must be instance of \PEIP\INF\Event\Event'); |
78 | 78 | } |
79 | 79 | } //put your code here |
@@ -90,8 +90,8 @@ discard block |
||
90 | 90 | * @return |
91 | 91 | * @see EventBuilder |
92 | 92 | */ |
93 | - public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false){ |
|
94 | - if(!$this->hasListeners($name, ($object))){ |
|
93 | + public function buildAndNotify($name, $object, array $headers = array(), $eventClass = false, $type = false) { |
|
94 | + if (!$this->hasListeners($name, ($object))) { |
|
95 | 95 | return false; |
96 | 96 | } |
97 | 97 | |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | * @param object $object object to check for listeners |
115 | 115 | * @return boolean |
116 | 116 | */ |
117 | - public function hasListeners($name, $object){ |
|
117 | + public function hasListeners($name, $object) { |
|
118 | 118 | return parent::hasListeners( |
119 | 119 | $name, |
120 | 120 | Reflection_Pool::getInstance($object) |
@@ -41,11 +41,11 @@ discard block |
||
41 | 41 | * @param mixed array|ArrayAccess array with values to iterate over |
42 | 42 | * @return |
43 | 43 | */ |
44 | - public function __construct($array = array()){ |
|
44 | + public function __construct($array = array()) { |
|
45 | 45 | $this->init($array); |
46 | 46 | } |
47 | 47 | |
48 | - protected function init($array = array()){ |
|
48 | + protected function init($array = array()) { |
|
49 | 49 | $array = Test::assertArrayAccess($array) |
50 | 50 | ? $array |
51 | 51 | : array(); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * @param mixed $listener the listener to register |
60 | 60 | * @return |
61 | 61 | */ |
62 | - public function connect($listener){ |
|
62 | + public function connect($listener) { |
|
63 | 63 | $this->listeners[] = $listener; |
64 | 64 | } |
65 | 65 | |
@@ -70,9 +70,9 @@ discard block |
||
70 | 70 | * @param mixed $listener the listener to unregister |
71 | 71 | * @return |
72 | 72 | */ |
73 | - public function disconnect($listener){ |
|
74 | - foreach ($this->listeners as $i => $callable){ |
|
75 | - if ($listener === $callable){ |
|
73 | + public function disconnect($listener) { |
|
74 | + foreach ($this->listeners as $i => $callable) { |
|
75 | + if ($listener === $callable) { |
|
76 | 76 | unset($this->listeners[$i]); |
77 | 77 | } |
78 | 78 | } |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | * @access public |
86 | 86 | * @return |
87 | 87 | */ |
88 | - public function disconnectAll(){ |
|
88 | + public function disconnectAll() { |
|
89 | 89 | $this->init(); |
90 | 90 | } |
91 | 91 | |
@@ -95,8 +95,8 @@ discard block |
||
95 | 95 | * @access public |
96 | 96 | * @return boolean wether any listener is registered |
97 | 97 | */ |
98 | - public function hasListeners(){ |
|
99 | - return (boolean) $this->listeners->count(); |
|
98 | + public function hasListeners() { |
|
99 | + return (boolean)$this->listeners->count(); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | /** |
@@ -108,10 +108,10 @@ discard block |
||
108 | 108 | * @param mixed $subject the subject to notify about |
109 | 109 | * @return |
110 | 110 | */ |
111 | - public function notify($subject){ |
|
111 | + public function notify($subject) { |
|
112 | 112 | $res = NULL; |
113 | - if($this->hasListeners()){ |
|
114 | - if(!$this->listeners->valid()){ |
|
113 | + if ($this->hasListeners()) { |
|
114 | + if (!$this->listeners->valid()) { |
|
115 | 115 | $this->listeners->rewind(); |
116 | 116 | } |
117 | 117 | $res = self::doNotifyOne($this->listeners->current(), $subject); |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * @access public |
127 | 127 | * @return array registered listeners |
128 | 128 | */ |
129 | - public function getListeners(){ |
|
129 | + public function getListeners() { |
|
130 | 130 | return $this->listeners->getArrayCopy(); |
131 | 131 | } |
132 | 132 |
@@ -20,4 +20,4 @@ |
||
20 | 20 | |
21 | 21 | |
22 | 22 | class ObjectStorage |
23 | - extends \SplObjectStorage{} |
|
23 | + extends \SplObjectStorage {} |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * @param $subject |
37 | 37 | * @return |
38 | 38 | */ |
39 | - public function __construct(\ArrayAccess $methodMap, $subject){ |
|
39 | + public function __construct(\ArrayAccess $methodMap, $subject) { |
|
40 | 40 | $this->methodMap = $methodMap; |
41 | 41 | $this->subject = $subject; |
42 | 42 | } |
@@ -48,8 +48,8 @@ discard block |
||
48 | 48 | * @param $arguments |
49 | 49 | * @return |
50 | 50 | */ |
51 | - public function __call($method, array $arguments){ |
|
52 | - if(array_key_exists($method, $this->methodMap)){ |
|
51 | + public function __call($method, array $arguments) { |
|
52 | + if (array_key_exists($method, $this->methodMap)) { |
|
53 | 53 | return call_user_func_array(array($this->subject, $this->methodMap[$method]), $arguments); |
54 | 54 | } |
55 | 55 | } |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | |
25 | 25 | class VisitableArray |
26 | 26 | extends \RecursiveArrayIterator |
27 | - implements \PEIP\INF\Base\Visitable{ |
|
27 | + implements \PEIP\INF\Base\Visitable { |
|
28 | 28 | |
29 | 29 | |
30 | 30 | |
@@ -33,9 +33,9 @@ discard block |
||
33 | 33 | * @param $visitor |
34 | 34 | * @return |
35 | 35 | */ |
36 | - public function acceptVisitor(\PEIP\INF\Base\Visitor $visitor){ |
|
37 | - if($this->hasChildren()){ |
|
38 | - foreach($this->getChildren as $child){ |
|
36 | + public function acceptVisitor(\PEIP\INF\Base\Visitor $visitor) { |
|
37 | + if ($this->hasChildren()) { |
|
38 | + foreach ($this->getChildren as $child) { |
|
39 | 39 | $child->acceptVisitor($visitor); |
40 | 40 | } |
41 | 41 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | * @param string $className name of the class to return ReflectionClass for |
33 | 33 | * @return ReflectionClass the ReflectionClass instance for given class |
34 | 34 | */ |
35 | - protected static function getReflectionClass($className){ |
|
35 | + protected static function getReflectionClass($className) { |
|
36 | 36 | return array_key_exists($className, self::$reflectionClasses) |
37 | 37 | ? self::$reflectionClasses[$className] |
38 | 38 | : (self::$reflectionClasses[$className] = new \ReflectionClass($className)); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | * @param string $className name of the class to return ReflectionClass for |
48 | 48 | * @return ReflectionClass the ReflectionClass instance for given class |
49 | 49 | */ |
50 | - public static function getInstance($className){ |
|
50 | + public static function getInstance($className) { |
|
51 | 51 | return self::getReflectionClass($className); |
52 | 52 | } |
53 | 53 |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * @param $methodMap |
31 | 31 | * @return |
32 | 32 | */ |
33 | - public function __construct(ArrayAccess $methodMap){ |
|
33 | + public function __construct(ArrayAccess $methodMap) { |
|
34 | 34 | $this->methodMap = $methodMap; |
35 | 35 | } |
36 | 36 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | * @param $subject |
41 | 41 | * @return |
42 | 42 | */ |
43 | - public function setSubject($subject){ |
|
43 | + public function setSubject($subject) { |
|
44 | 44 | $this->subject = $subject; |
45 | 45 | return $this; |
46 | 46 | } |
@@ -52,8 +52,8 @@ discard block |
||
52 | 52 | * @param $arguments |
53 | 53 | * @return |
54 | 54 | */ |
55 | - public function __call($method, $arguments){ |
|
56 | - if(array_key_exists($method, $this->methodMap)){ |
|
55 | + public function __call($method, $arguments) { |
|
56 | + if (array_key_exists($method, $this->methodMap)) { |
|
57 | 57 | return call_user_func_array(array($this->subject, $this->methodMap[$method]), $arguments); |
58 | 58 | } |
59 | 59 | } |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | * @param ObjectStorage $store an instane of ObjectStorage to act as the internal object-store |
39 | 39 | * @return |
40 | 40 | */ |
41 | - public function __construct(\SplObjectStorage $store = NULL){ |
|
41 | + public function __construct(\SplObjectStorage $store = NULL) { |
|
42 | 42 | $this->store = (bool)$store ? $store : new ObjectStorage; |
43 | 43 | } |
44 | 44 | |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | * @param object $box an object to act as the 'box' |
54 | 54 | * @return object the 'box' for the sealed value |
55 | 55 | */ |
56 | - public function seal($value, $box = false){ |
|
56 | + public function seal($value, $box = false) { |
|
57 | 57 | $box = (bool)$box ? $box : new \stdClass; |
58 | 58 | $this->store[$box] = $value; |
59 | 59 | return $box; |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | * @param object $box the box-object to return the value for. |
67 | 67 | * @return |
68 | 68 | */ |
69 | - public function unseal($box){ |
|
69 | + public function unseal($box) { |
|
70 | 70 | return $this->store[$box]; |
71 | 71 | } |
72 | 72 | } |
@@ -43,10 +43,10 @@ discard block |
||
43 | 43 | * @param boolean $storeRef wether to store a reference for new instance. default: true |
44 | 44 | * @return |
45 | 45 | */ |
46 | - public function __construct($className, \ReflectionClass $reflectionClass = NULL, $storeRef = true){ |
|
47 | - if($reflectionClass ){ |
|
46 | + public function __construct($className, \ReflectionClass $reflectionClass = NULL, $storeRef = true) { |
|
47 | + if ($reflectionClass) { |
|
48 | 48 | |
49 | - if($reflectionClass->getName() != $className){ |
|
49 | + if ($reflectionClass->getName() != $className) { |
|
50 | 50 | throw new \Exception( |
51 | 51 | 'Constructing GenericBuilder with wrong ReflectionClass' |
52 | 52 | ); |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | $this->reflectionClass = $reflectionClass; |
57 | 57 | } |
58 | 58 | $this->className = $className; |
59 | - if($storeRef){ |
|
59 | + if ($storeRef) { |
|
60 | 60 | self::$instances[$this->className] = $this; |
61 | 61 | } |
62 | 62 | } |
@@ -68,8 +68,8 @@ discard block |
||
68 | 68 | * @param string $className class-name to return builder instance for |
69 | 69 | * @return GenericBuilder builder instance for class |
70 | 70 | */ |
71 | - public static function getInstance($className){ |
|
72 | - if(!array_key_exists((string)$className, self::$instances)) { |
|
71 | + public static function getInstance($className) { |
|
72 | + if (!array_key_exists((string)$className, self::$instances)) { |
|
73 | 73 | new GenericBuilder($className); |
74 | 74 | } |
75 | 75 | return self::$instances[$className]; |
@@ -82,9 +82,9 @@ discard block |
||
82 | 82 | * @param array $arguments array of constructore arguments |
83 | 83 | * @return object the created object instance |
84 | 84 | */ |
85 | - public function build(array $arguments = array()){ |
|
86 | - if(Test::assertClassHasConstructor($this->className)){ |
|
87 | - if(!Test::assertRequiredConstructorParameters($this->className, $arguments)){ |
|
85 | + public function build(array $arguments = array()) { |
|
86 | + if (Test::assertClassHasConstructor($this->className)) { |
|
87 | + if (!Test::assertRequiredConstructorParameters($this->className, $arguments)) { |
|
88 | 88 | throw new \Exception('Missing Argument '.(count($arguments) + 1).' for '.$this->className.'::__construct'); |
89 | 89 | } |
90 | 90 | return $this->getReflectionClass()->newInstanceArgs($arguments); |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | * @access public |
99 | 99 | * @return ReflectionClass |
100 | 100 | */ |
101 | - public function getReflectionClass(){ |
|
101 | + public function getReflectionClass() { |
|
102 | 102 | return ReflectionPool::getInstance($this->className); |
103 | 103 | } |
104 | 104 |