| Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor/magento/module-csp/Model/ |
| Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor/magento/module-csp/Model/SubresourceIntegrity.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Csp\Model;
/**
* Subresource Integrity data model.
*/
class SubresourceIntegrity extends \Magento\Framework\DataObject
{
/**
* Gets an integrity Path.
*
* @return string|null
*/
public function getPath(): ?string
{
return $this->getData("path");
}
/**
* Gets an integrity hash.
*
* @return string|null
*/
public function getHash(): ?string
{
return $this->getData("hash");
}
}