Sulu\Bundle\ContentBundle\Version201510210733::upgradeUrl PHP Метод

upgradeUrl() приватный Метод

Upgrades the given URL to the new representation.
private upgradeUrl ( string &$value )
$value string The url to change
    private function upgradeUrl(&$value)
    {
        if (!empty($value) && !strpos($value, '://')) {
            $value = 'http://' . $value;
        }
    }