summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/web/src/Url.php
blob: 52620c430fdc641f62d2c07404cb276f0ec24663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace ipl\Web;

/**
 * @TODO(el): Don't depend on Icinga Web's Url
 */
class Url extends \Icinga\Web\Url
{
    public function __toString()
    {
        return $this->getAbsoluteUrl('&');
    }
}