FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
core
/
app-core
/
src
/
Assets
Edit File: Manifest.php
<?php /** * @package SureCartAppCore * @author SureCart <support@surecart.com> * @copyright SureCart * @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0 * @link https://surecart.com */ namespace SureCartAppCore\Assets; use SureCartCore\Helpers\MixedType; use SureCartAppCore\Concerns\JsonFileNotFoundException; use SureCartAppCore\Concerns\ReadsJsonTrait; class Manifest { use ReadsJsonTrait { load as traitLoad; } /** * App root path. * * @var string */ protected $path = ''; /** * Constructor. * * @param string $path */ public function __construct( $path ) { $this->path = $path; } /** * {@inheritDoc} */ protected function getJsonPath() { return MixedType::normalizePath( $this->path . DIRECTORY_SEPARATOR . 'dist' . DIRECTORY_SEPARATOR . 'manifest.json' ); } /** * {@inheritDoc} */ protected function load( $file ) { try { return $this->traitLoad( $file ); } catch ( JsonFileNotFoundException $e ) { // We used to throw an exception here but it just causes confusion for new users. } return []; } }
Save
Back