whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
paypal
/
rest-api-sdk-php
/
lib
/
PayPal
/
Validation
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/paypal/rest-api-sdk-php/lib/PayPal/Validation/UrlValidator.php
<?php namespace PayPal\Validation; /** * Class UrlValidator * * @package PayPal\Validation */ class UrlValidator { /** * Helper method for validating URLs that will be used by this API in any requests. * * @param $url * @param string|null $urlName * @throws \InvalidArgumentException */ public static function validate($url, $urlName = null) { if (filter_var($url, FILTER_VALIDATE_URL) === false) { throw new \InvalidArgumentException("$urlName is not a fully qualified URL"); } } }
Copyright ©2021 || Defacer Indonesia