@@ -85,12 +85,12 @@ |
||
85 | 85 | protected function getContext() : \Aimeos\MShop\Context\Item\Iface |
86 | 86 | { |
87 | 87 | $container = $this->getContainer(); |
88 | - $aimeos = $container->get('aimeos')->get(); |
|
88 | + $aimeos = $container->get( 'aimeos' )->get(); |
|
89 | 89 | $context = $container->get( 'aimeos.context' )->get( false, 'command' ); |
90 | 90 | |
91 | 91 | $tmplPaths = $aimeos->getCustomPaths( 'controller/jobs/templates' ); |
92 | 92 | $tmplPaths = array_merge( $tmplPaths, $aimeos->getCustomPaths( 'client/html/templates' ) ); |
93 | - $view = $container->get('aimeos.view')->create( $context, $tmplPaths ); |
|
93 | + $view = $container->get( 'aimeos.view' )->create( $context, $tmplPaths ); |
|
94 | 94 | |
95 | 95 | $langManager = \Aimeos\MShop::create( $context, 'locale/language' ); |
96 | 96 | $langids = array_keys( $langManager->searchItems( $langManager->createSearch( true ) ) ); |
@@ -552,7 +552,7 @@ |
||
552 | 552 | */ |
553 | 553 | public function getWebsite() : string |
554 | 554 | { |
555 | - return (string) $this->website; |
|
555 | + return (string) $this->website; |
|
556 | 556 | } |
557 | 557 | |
558 | 558 |