FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
pinterest-for-woocommerce
/
src
/
View
Edit File: PHPViewFactory.php
<?php /** * Class PHPViewFactory * * @package Automattic\WooCommerce\Pinterest\View */ declare( strict_types=1 ); namespace Automattic\WooCommerce\Pinterest\View; defined( 'ABSPATH' ) || exit; /** * Class PHPViewFactory */ final class PHPViewFactory implements ViewFactory { /** * Create a new view object. * * @param string $path Path to the view file to render. * * @return View Instantiated view object. * * @throws ViewException If an invalid path was passed into the View. */ public function create( string $path ): View { return new PHPView( $path, $this ); } }
Save
Back