Skip to content

Commit

Permalink
CORE-3519 Fixes after merge with master.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ole-Gi committed Mar 13, 2018
1 parent abfa2a9 commit 4d52f03
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function indexAction(Request $request)
$addressTable = $this->getFactory()
->createCustomerAddressTable($idCustomer);

$externalBlocks = $this->renderExternalBlocks($request, $customerTransfer);
$externalBlocks = $this->renderCustomerDetailBlocks($request, $customerTransfer);
if ($externalBlocks instanceof RedirectResponse) {
return $externalBlocks;
}
Expand Down Expand Up @@ -103,7 +103,6 @@ protected function loadCustomerTransfer($idCustomer)
return $customerTransfer;
}


/**
* @param \Symfony\Component\HttpFoundation\Request $request
* @param \Generated\Shared\Transfer\CustomerTransfer $customerTransfer
Expand Down
2 changes: 1 addition & 1 deletion src/Spryker/Zed/Customer/CustomerDependencyProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ protected function addDateFormatterService(Container $container): \Spryker\Zed\K
*
* @return \Spryker\Zed\Kernel\Container
*/
protected function addUtilDateTimeService($container)
protected function addUtilDateTimeService($container): \Spryker\Zed\Kernel\Container
{
$container[static::SERVICE_UTIL_DATE_TIME] = function (Container $container) {
return new CustomerToUtilDateTimeServiceBridge($container->getLocator()->utilDateTime()->service());
Expand Down
2 changes: 1 addition & 1 deletion src/Spryker/Zed/Customer/Presentation/View/index.twig
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
{% endblock %}
{% endembed %}

<div class="row">
<div>
{% for blockName, externalBlock in blocks %}
<div id="{{ blockName }}">{{ externalBlock | raw }}</div>
{% endfor %}
Expand Down

0 comments on commit 4d52f03

Please sign in to comment.