aboutsummaryrefslogtreecommitdiff
path: root/src/phinde/LinkInfo.php
blob: 4e3980c6f5c8987c2decc326f803c7ddc70f6ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
namespace phinde;

class LinkInfo
{
    public $url;
    public $title;
    public $source;

    public function __construct($url, $title = null, $source = null)
    {
        $this->url    = $url;
        $this->title  = $title;
        $this->source = $source;
    }
}
?>