DIR: /home/otwalrll/satojafurnitures.com/wp-content/plugins/tidio-live-chat/src/Utils/ |
Current File : /home/otwalrll/satojafurnitures.com/wp-content/plugins/tidio-live-chat/src/Utils/Url.php |
<?php namespace TidioLiveChat\Utils; if (!defined('WPINC')) { die('File loaded directly. Exiting.'); } class Url { /** * @param string $url * @param string $path * @return string */ public static function build($url, $path) { return sprintf( '%s/%s', rtrim($url, '/'), ltrim($path, '/') ); } } |