summaryrefslogtreecommitdiff
path: root/vendor/miniflux/picofeed/lib/PicoFeed/Serialization/Subscription.php
blob: 12eccfd51c49553e16de4cb88a3889ae17df4182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?php

namespace PicoFeed\Serialization;

/**
 * Class Subscription
 *
 * @package PicoFeed\Serialization
 * @author  Frederic Guillot
 */
class Subscription
{
    protected $title = '';
    protected $feedUrl = '';
    protected $siteUrl = '';
    protected $category = '';
    protected $description = '';
    protected $type = '';

    /**
     * Create object instance
     *
     * @static
     * @access public
     * @return Subscription
     */
    public static function create()
    {
        return new static();
    }

    /**
     * Set title
     *
     * @access public
     * @param  string $title
     * @return Subscription
     */
    public function setTitle($title)
    {
        $this->title = $title;
        return $this;
    }

    /**
     * Get title
     *
     * @access public
     * @return string
     */
    public function getTitle()
    {
        return $this->title;
    }

    /**
     * Set feed URL
     *
     * @access public
     * @param string $feedUrl
     * @return Subscription
     */
    public function setFeedUrl($feedUrl)
    {
        $this->feedUrl = $feedUrl;
        return $this;
    }

    /**
     * Get feed URL
     *
     * @access public
     * @return string
     */
    public function getFeedUrl()
    {
        return $this->feedUrl;
    }

    /**
     * Set site URL
     *
     * @access public
     * @param string $siteUrl
     * @return Subscription
     */
    public function setSiteUrl($siteUrl)
    {
        $this->siteUrl = $siteUrl;
        return $this;
    }

    /**
     * Get site URL
     *
     * @access public
     * @return string
     */
    public function getSiteUrl()
    {
        return $this->siteUrl;
    }

    /**
     * Set category
     *
     * @access public
     * @param string $category
     * @return Subscription
     */
    public function setCategory($category)
    {
        $this->category = $category;
        return $this;
    }

    /**
     * Get category
     *
     * @access public
     * @return string
     */
    public function getCategory()
    {
        return $this->category;
    }

    /**
     * Set description
     *
     * @access public
     * @param string $description
     * @return Subscription
     */
    public function setDescription($description)
    {
        $this->description = $description;
        return $this;
    }

    /**
     * Get description
     *
     * @access public
     * @return string
     */
    public function getDescription()
    {
        return $this->description;
    }

    /**
     * Set type
     *
     * @access public
     * @param string $type
     * @return Subscription
     */
    public function setType($type)
    {
        $this->type = $type;
        return $this;
    }

    /**
     * Get type
     *
     * @access public
     * @return string
     */
    public function getType()
    {
        return $this->type;
    }
}