@@ -57,7 +57,7 @@ |
||
| 57 | 57 | var_dump($drinks); |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | -}else{
|
|
| 60 | +} else{
|
|
| 61 | 61 | throw new RuntimeException('Could not get CafeGateway');
|
| 62 | 62 | } |
| 63 | 63 | |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | public function callService(\PEIP\INF\Message\Message $message){
|
| 37 | 37 | if(is_callable($this->serviceCallable)){
|
| 38 | 38 | $res = call_user_func_array($this->serviceCallable, $message->getContent()); |
| 39 | - }elseif(is_object($this->serviceCallable) && method_exists($this->serviceCallable, 'handle')){
|
|
| 39 | + } elseif(is_object($this->serviceCallable) && method_exists($this->serviceCallable, 'handle')){
|
|
| 40 | 40 | $res = call_user_func_array(array($this->serviceCallable, 'handle'), $message->getContent()); |
| 41 | 41 | } |
| 42 | 42 | return $res; |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | public static function createFromFile($file){
|
| 101 | 101 | if(file_exists($file)){
|
| 102 | 102 | return self::createFromString(file_get_contents($file)); |
| 103 | - }else{
|
|
| 103 | + } else{
|
|
| 104 | 104 | throw new \RuntimeException('Cannot open file "'.$file.'".');
|
| 105 | 105 | } |
| 106 | 106 | } |
@@ -571,7 +571,7 @@ discard block |
||
| 571 | 571 | $ref = trim((string)$config['ref']); |
| 572 | 572 | if($ref != ''){
|
| 573 | 573 | $service = $this->getService($ref); |
| 574 | - }else{
|
|
| 574 | + } else{
|
|
| 575 | 575 | $service = $this->createService($config); |
| 576 | 576 | } |
| 577 | 577 | return $service; |
@@ -591,7 +591,7 @@ discard block |
||
| 591 | 591 | protected static function getSetter($config){
|
| 592 | 592 | if($config['setter']){
|
| 593 | 593 | $setter = (string)$config['setter']; |
| 594 | - }elseif($config['name']){
|
|
| 594 | + } elseif($config['name']){
|
|
| 595 | 595 | $setter = 'set'.ucfirst((string)$config['name']); |
| 596 | 596 | } |
| 597 | 597 | return $setter; |
@@ -607,26 +607,26 @@ discard block |
||
| 607 | 607 | protected function buildArg($config){
|
| 608 | 608 | if(trim((string)$config['value']) != ''){
|
| 609 | 609 | $arg = (string)$config['value']; |
| 610 | - }elseif($config->getName() == 'value'){
|
|
| 610 | + } elseif($config->getName() == 'value'){
|
|
| 611 | 611 | $arg = (string)$config; |
| 612 | - }elseif($config->getName() == 'list'){
|
|
| 612 | + } elseif($config->getName() == 'list'){
|
|
| 613 | 613 | $arg = array(); |
| 614 | 614 | foreach($config->children() as $entry){
|
| 615 | 615 | if($entry->getName() == 'value'){
|
| 616 | 616 | if($entry['key']){
|
| 617 | 617 | $arg[(string)$entry['key']] = (string)$entry; |
| 618 | - }else{
|
|
| 618 | + } else{
|
|
| 619 | 619 | $arg[] = (string)$entry; |
| 620 | 620 | } |
| 621 | - }elseif($entry->getName() == 'service'){
|
|
| 621 | + } elseif($entry->getName() == 'service'){
|
|
| 622 | 622 | $arg[] = $this->provideService($entry); |
| 623 | 623 | } |
| 624 | 624 | } |
| 625 | - }elseif($config->getName() == 'service'){
|
|
| 625 | + } elseif($config->getName() == 'service'){
|
|
| 626 | 626 | $arg = $this->provideService($config); |
| 627 | - }elseif($config->list){
|
|
| 627 | + } elseif($config->list){
|
|
| 628 | 628 | $arg = $this->buildArg($config->list); |
| 629 | - }elseif($config->service){
|
|
| 629 | + } elseif($config->service){
|
|
| 630 | 630 | $arg = $this->buildArg($config->service); |
| 631 | 631 | } |
| 632 | 632 | return $arg; |
@@ -694,7 +694,7 @@ discard block |
||
| 694 | 694 | $channel = $this->services[trim((string)$channelName)]; |
| 695 | 695 | if($channel instanceof \PEIP\INF\Channel\Channel){
|
| 696 | 696 | return $channel; |
| 697 | - }else{
|
|
| 697 | + } else{
|
|
| 698 | 698 | return NULL; |
| 699 | 699 | } |
| 700 | 700 | } |
@@ -718,10 +718,10 @@ discard block |
||
| 718 | 718 | $constructor = (string)$config["constructor"]; |
| 719 | 719 | if($constructor != ''){
|
| 720 | 720 | $service = call_user_func_array(array($cls, $constructor), $arguments); |
| 721 | - }else{
|
|
| 721 | + } else{
|
|
| 722 | 722 | $service = self::build($cls, $arguments); |
| 723 | 723 | } |
| 724 | - }catch(\Exception $e){
|
|
| 724 | + } catch(\Exception $e){
|
|
| 725 | 725 | throw new \RuntimeException('Could not create Service "'.$cls.'" -> '.$e->getMessage());
|
| 726 | 726 | } |
| 727 | 727 | } |