<?php
namespace Intervention\Image;
use Closure;
class ImageManagerStatic
{
/**
* Instance of Intervention\Image\ImageManager
*
* @var ImageManager
*/
public static $manager;
/**
* Creates a new instance
*
* @param ImageManager $manager
*/
public function __construct(ImageManager $manager = null)
{
self::$manager = $manager ? $manager : new ImageManager;
}
/**
* Get or create new ImageManager instance
*
* @return ImageManager
*/
public static function getManager()
{
return self::$manager ? self::$manager : new ImageManager;
}
/**
* Statically create new custom configured image manager
*
* @param array $config
*
* @return ImageManager
*/
public static function configure(array $config = [])
{
return self::$manager = self::getManager()->configure($config);
}
/**
* Statically initiates an Image instance from different input types
*
* @param mixed $data
*
* @return \Intervention\Image\Image
* @throws \Intervention\Image\Exception\NotReadableException
*/
public static function make($data)
{
return self::getManager()->make($data);
}
/**
* Statically creates an empty image canvas
*
* @param int $width
* @param int $height
* @param mixed $background
*
* @return \Intervention\Image\Image
*/
public static function canvas($width, $height, $background = null)
{
return self::getManager()->canvas($width, $height, $background);
}
/**
* Create new cached image and run callback statically
*
* @param Closure $callback
* @param int $lifetime
* @param boolean $returnObj
*
* @return mixed
*/
public static function cache(Closure $callback, $lifetime = null, $returnObj = false)
{
return self::getManager()->cache($callback, $lifetime, $returnObj);
}
}
At NFC Pay, we strive to provide a seamless and satisfactory experience with our services. This Refund Policy outlines the circumstances under which refunds may be issued for transactions made through our platform. Please read this policy carefully to understand your rights regarding refunds.
1. Eligibility for Refunds
Refunds may be considered under the following circumstances:
2. Non-Refundable Situations
Refunds will generally not be issued in the following situations:
3. Refund Process
To request a refund, please follow these steps:
4. Refund Exceptions
Certain transactions may be subject to specific terms and conditions, including non-refundable fees or charges. Please review the terms associated with each transaction carefully, as some fees may not be eligible for refunds.
5. Modifications to the Refund Policy
NFC Pay reserves the right to modify this Refund Policy at any time. Changes will be communicated through updates on our website and app, and the effective date will be updated accordingly. We encourage you to review this policy periodically to stay informed about our refund practices.
By using NFC Pay, you agree to this Refund Policy and understand the terms under which refunds may be issued. Our goal is to ensure a fair and transparent refund process, providing you with confidence and peace of mind when using our services.