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.
*/
/**
* Media library image config interface
*/
namespace Magento\Catalog\Model\Product\Media;
/**
* Interface \Magento\Catalog\Model\Product\Media\ConfigInterface
*
* @api
*/
interface ConfigInterface
{
/**
* Retrieve base url for media files
*
* @return string
*/
public function getBaseMediaUrl();
/**
* Retrieve base path for media files
*
* @return string
*/
public function getBaseMediaPath();
/**
* Retrieve url for media file
*
* @param string $file
* @return string
*/
public function getMediaUrl($file);
/**
* Retrieve file system path for media file
*
* @param string $file
* @return string
*/
public function getMediaPath($file);
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* Media library image config interface
*/
namespace Magento\Catalog\Model\Product\Media;
/**
* Interface \Magento\Catalog\Model\Product\Media\ConfigInterface
*
* @api
*/
interface ConfigInterface
{
/**
* Retrieve base url for media files
*
* @return string
*/
public function getBaseMediaUrl();
/**
* Retrieve base path for media files
*
* @return string
*/
public function getBaseMediaPath();
/**
* Retrieve url for media file
*
* @param string $file
* @return string
*/
public function getMediaUrl($file);
/**
* Retrieve file system path for media file
*
* @param string $file
* @return string
*/
public function getMediaPath($file);
}
Function Calls
None |
Stats
MD5 | e6425e9243abea552383ea5a81dcd418 |
Eval Count | 0 |
Decode Time | 87 ms |