Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * Copyright Magento, Inc. All rights reserved. * See COPYING.txt for license ..
Decoded Output download
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Observer\Compare;
use Magento\Framework\Event\ObserverInterface;
use Magento\Catalog\Model\Product\Compare\Item;
/**
* Catalog Compare Item Model
*
*/
class BindCustomerLoginObserver implements ObserverInterface
{
/**
* @var Item
*/
private $item;
/**
* @param Item $item
*/
public function __construct(
Item $item
) {
$this->item = $item;
}
/**
* Customer login bind process
* @param \Magento\Framework\Event\Observer $observer
* @return $this
*
* @SuppressWarnings(PHPMD.UnusedLocalVariable)
*/
public function execute(\Magento\Framework\Event\Observer $observer)
{
$this->item->bindCustomerLogin();
return $this;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Observer\Compare;
use Magento\Framework\Event\ObserverInterface;
use Magento\Catalog\Model\Product\Compare\Item;
/**
* Catalog Compare Item Model
*
*/
class BindCustomerLoginObserver implements ObserverInterface
{
/**
* @var Item
*/
private $item;
/**
* @param Item $item
*/
public function __construct(
Item $item
) {
$this->item = $item;
}
/**
* Customer login bind process
* @param \Magento\Framework\Event\Observer $observer
* @return $this
*
* @SuppressWarnings(PHPMD.UnusedLocalVariable)
*/
public function execute(\Magento\Framework\Event\Observer $observer)
{
$this->item->bindCustomerLogin();
return $this;
}
}
Function Calls
None |
Stats
MD5 | 7b653eb7efe1cda83fb065f90f5f64fe |
Eval Count | 0 |
Decode Time | 133 ms |