@@ -17,7 +17,7 @@ |
||
| 17 | 17 | protected function getMessage($object){
|
| 18 | 18 | if($this->channel instanceof \PEIP\INF\Channel\SubscribableChannel){
|
| 19 | 19 | return $object; |
| 20 | - }else{
|
|
| 20 | + } else{
|
|
| 21 | 21 | return $object->getContent()->receive(); |
| 22 | 22 | } |
| 23 | 23 | } |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | $store = $this->factory->build(); |
| 55 | 55 | if($store instanceof \PEIP\INF\Data\Store){
|
| 56 | 56 | $this->setPrivateValue($namespace, $store); |
| 57 | - }else{
|
|
| 57 | + } else{
|
|
| 58 | 58 | throw new \Exception('Could not build Instance of \PEIP\INF\Data\Store from factory.');
|
| 59 | 59 | } |
| 60 | 60 | } |
@@ -41,8 +41,7 @@ |
||
| 41 | 41 | $a = $b->getName(); |
| 42 | 42 | if(!$b->children()){
|
| 43 | 43 | $arr[$a] = trim($b[0]); |
| 44 | - } |
|
| 45 | - else{
|
|
| 44 | + } else{
|
|
| 46 | 45 | $arr[$a][$iter] = array(); |
| 47 | 46 | $arr[$a][$iter] = xml2phpArray($b,$arr[$a][$iter]); |
| 48 | 47 | } |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | public static function createFromFile($file){
|
| 102 | 102 | if(file_exists($file)){
|
| 103 | 103 | return self::createFromString(file_get_contents($file)); |
| 104 | - }else{
|
|
| 104 | + } else{
|
|
| 105 | 105 | throw new \RuntimeException('Cannot open file "'.$file.'".');
|
| 106 | 106 | } |
| 107 | 107 | } |
@@ -393,7 +393,7 @@ discard block |
||
| 393 | 393 | $setter = self::getSetter($property); |
| 394 | 394 | if($setter && self::hasPublicProperty($service, 'Method', $setter)){
|
| 395 | 395 | $service->{$setter}($arg);
|
| 396 | - }elseif(in_array($property, self::hasPublicProperty($service, 'Property', $setter))){
|
|
| 396 | + } elseif(in_array($property, self::hasPublicProperty($service, 'Property', $setter))){
|
|
| 397 | 397 | $service->$setter = $arg; |
| 398 | 398 | } |
| 399 | 399 | } |
@@ -626,7 +626,7 @@ discard block |
||
| 626 | 626 | $ref = trim((string)$config['ref']); |
| 627 | 627 | if($ref != ''){
|
| 628 | 628 | $service = $this->getService($ref); |
| 629 | - }else{
|
|
| 629 | + } else{
|
|
| 630 | 630 | $service = $this->createService($config); |
| 631 | 631 | } |
| 632 | 632 | return $service; |
@@ -646,7 +646,7 @@ discard block |
||
| 646 | 646 | protected static function getSetter($config){
|
| 647 | 647 | if($config['setter']){
|
| 648 | 648 | $setter = (string)$config['setter']; |
| 649 | - }elseif($config['name']){
|
|
| 649 | + } elseif($config['name']){
|
|
| 650 | 650 | $setter = 'set'.ucfirst((string)$config['name']); |
| 651 | 651 | } |
| 652 | 652 | return $setter; |
@@ -662,26 +662,26 @@ discard block |
||
| 662 | 662 | protected function buildArg($config){
|
| 663 | 663 | if(trim((string)$config['value']) != ''){
|
| 664 | 664 | $arg = (string)$config['value']; |
| 665 | - }elseif($config->getName() == 'value'){
|
|
| 665 | + } elseif($config->getName() == 'value'){
|
|
| 666 | 666 | $arg = (string)$config; |
| 667 | - }elseif($config->getName() == 'list'){
|
|
| 667 | + } elseif($config->getName() == 'list'){
|
|
| 668 | 668 | $arg = array(); |
| 669 | 669 | foreach($config->children() as $entry){
|
| 670 | 670 | if($entry->getName() == 'value'){
|
| 671 | 671 | if($entry['key']){
|
| 672 | 672 | $arg[(string)$entry['key']] = (string)$entry; |
| 673 | - }else{
|
|
| 673 | + } else{
|
|
| 674 | 674 | $arg[] = (string)$entry; |
| 675 | 675 | } |
| 676 | - }elseif($entry->getName() == 'service'){
|
|
| 676 | + } elseif($entry->getName() == 'service'){
|
|
| 677 | 677 | $arg[] = $this->provideService($entry); |
| 678 | 678 | } |
| 679 | 679 | } |
| 680 | - }elseif($config->getName() == 'service'){
|
|
| 680 | + } elseif($config->getName() == 'service'){
|
|
| 681 | 681 | $arg = $this->provideService($config); |
| 682 | - }elseif($config->list){
|
|
| 682 | + } elseif($config->list){
|
|
| 683 | 683 | $arg = $this->buildArg($config->list); |
| 684 | - }elseif($config->service){
|
|
| 684 | + } elseif($config->service){
|
|
| 685 | 685 | $arg = $this->buildArg($config->service); |
| 686 | 686 | } |
| 687 | 687 | return $arg; |
@@ -749,7 +749,7 @@ discard block |
||
| 749 | 749 | $channel = $this->services[trim((string)$channelName)]; |
| 750 | 750 | if($channel instanceof \PEIP\INF\Channel\Channel){
|
| 751 | 751 | return $channel; |
| 752 | - }else{
|
|
| 752 | + } else{
|
|
| 753 | 753 | return NULL; |
| 754 | 754 | } |
| 755 | 755 | } |
@@ -770,14 +770,14 @@ discard block |
||
| 770 | 770 | public function buildAndModify($config, $arguments, $defaultClass = false){
|
| 771 | 771 | if("" != (string)$config["class"] || $defaultClass){
|
| 772 | 772 | $service = ServiceFactory::doBuild($config, $arguments, $defaultClass); |
| 773 | - }elseif($config["ref"]){
|
|
| 773 | + } elseif($config["ref"]){
|
|
| 774 | 774 | $service = $this->getService((string)$config['ref']); |
| 775 | - }else{
|
|
| 775 | + } else{
|
|
| 776 | 776 | throw new \RuntimeException('Could not create Service. no class or reference given.');
|
| 777 | 777 | } |
| 778 | 778 | if($config["ref_property"]){
|
| 779 | 779 | $service = $service->{(string)$config["ref_property"]};
|
| 780 | - }elseif($config["ref_method"]){
|
|
| 780 | + } elseif($config["ref_method"]){
|
|
| 781 | 781 | $args = array(); |
| 782 | 782 | if($config->argument){
|
| 783 | 783 | foreach($config->argument as $arg){
|
@@ -814,10 +814,10 @@ discard block |
||
| 814 | 814 | $constructor = (string)$config["constructor"]; |
| 815 | 815 | if($constructor != ''){
|
| 816 | 816 | $service = call_user_func_array(array($cls, $constructor), $arguments); |
| 817 | - }else{
|
|
| 817 | + } else{
|
|
| 818 | 818 | $service = self::build($cls, $arguments); |
| 819 | 819 | } |
| 820 | - }catch(\Exception $e){
|
|
| 820 | + } catch(\Exception $e){
|
|
| 821 | 821 | throw new \RuntimeException('Could not create Service "'.$cls.'" -> '.$e->getMessage());
|
| 822 | 822 | } |
| 823 | 823 | } |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | protected function getMessage($object){
|
| 18 | 18 | if($this->channel instanceof \PEIP\INF\Channel\SubscribableChannel){
|
| 19 | 19 | return $object; |
| 20 | - }else{
|
|
| 20 | + } else{
|
|
| 21 | 21 | return $object->getContent()->receive(); |
| 22 | 22 | } |
| 23 | 23 | } |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | protected function getMessage($object){
|
| 18 | 18 | if($this->channel instanceof \PEIP\INF\Channel\SubscribableChannel){
|
| 19 | 19 | return $object; |
| 20 | - }else{
|
|
| 20 | + } else{
|
|
| 21 | 21 | return $object->getContent()->receive(); |
| 22 | 22 | } |
| 23 | 23 | } |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | protected function getMessage($object){
|
| 18 | 18 | if($this->channel instanceof \PEIP\INF\Channel\SubscribableChannel){
|
| 19 | 19 | return $object; |
| 20 | - }else{
|
|
| 20 | + } else{
|
|
| 21 | 21 | return $object->getContent()->receive(); |
| 22 | 22 | } |
| 23 | 23 | } |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | protected function getMessage($object){
|
| 18 | 18 | if($this->channel instanceof \PEIP\INF\Channel\SubscribableChannel){
|
| 19 | 19 | return $object; |
| 20 | - }else{
|
|
| 20 | + } else{
|
|
| 21 | 21 | return $object->getContent()->receive(); |
| 22 | 22 | } |
| 23 | 23 | } |
@@ -70,10 +70,10 @@ |
||
| 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 |