OwnershipInfo::sameAs()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 4
Ratio 100 %

Importance

Changes 0
Metric Value
dl 4
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Spatie\SchemaOrg;
4
5
use \Spatie\SchemaOrg\Contracts\OwnershipInfoContract;
6
use \Spatie\SchemaOrg\Contracts\IntangibleContract;
7
use \Spatie\SchemaOrg\Contracts\StructuredValueContract;
8
use \Spatie\SchemaOrg\Contracts\ThingContract;
9
10
/**
11
 * A structured value providing information about when a certain organization or
12
 * person owned a certain product.
13
 *
14
 * @see http://schema.org/OwnershipInfo
15
 *
16
 */
17 View Code Duplication
class OwnershipInfo extends BaseType implements OwnershipInfoContract, IntangibleContract, StructuredValueContract, ThingContract
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
18
{
19
    /**
20
     * The organization or person from which the product was acquired.
21
     *
22
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $acquiredFrom
23
     *
24
     * @return static
25
     *
26
     * @see http://schema.org/acquiredFrom
27
     */
28
    public function acquiredFrom($acquiredFrom)
29
    {
30
        return $this->setProperty('acquiredFrom', $acquiredFrom);
31
    }
32
33
    /**
34
     * An additional type for the item, typically used for adding more specific
35
     * types from external vocabularies in microdata syntax. This is a
36
     * relationship between something and a class that the thing is in. In RDFa
37
     * syntax, it is better to use the native RDFa syntax - the 'typeof'
38
     * attribute - for multiple types. Schema.org tools may have only weaker
39
     * understanding of extra types, in particular those defined externally.
40
     *
41
     * @param string|string[] $additionalType
42
     *
43
     * @return static
44
     *
45
     * @see http://schema.org/additionalType
46
     */
47
    public function additionalType($additionalType)
48
    {
49
        return $this->setProperty('additionalType', $additionalType);
50
    }
51
52
    /**
53
     * An alias for the item.
54
     *
55
     * @param string|string[] $alternateName
56
     *
57
     * @return static
58
     *
59
     * @see http://schema.org/alternateName
60
     */
61
    public function alternateName($alternateName)
62
    {
63
        return $this->setProperty('alternateName', $alternateName);
64
    }
65
66
    /**
67
     * A description of the item.
68
     *
69
     * @param string|string[] $description
70
     *
71
     * @return static
72
     *
73
     * @see http://schema.org/description
74
     */
75
    public function description($description)
76
    {
77
        return $this->setProperty('description', $description);
78
    }
79
80
    /**
81
     * A sub property of description. A short description of the item used to
82
     * disambiguate from other, similar items. Information from other properties
83
     * (in particular, name) may be necessary for the description to be useful
84
     * for disambiguation.
85
     *
86
     * @param string|string[] $disambiguatingDescription
87
     *
88
     * @return static
89
     *
90
     * @see http://schema.org/disambiguatingDescription
91
     */
92
    public function disambiguatingDescription($disambiguatingDescription)
93
    {
94
        return $this->setProperty('disambiguatingDescription', $disambiguatingDescription);
95
    }
96
97
    /**
98
     * The identifier property represents any kind of identifier for any kind of
99
     * [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides
100
     * dedicated properties for representing many of these, either as textual
101
     * strings or as URL (URI) links. See [background
102
     * notes](/docs/datamodel.html#identifierBg) for more details.
103
     *
104
     * @param \Spatie\SchemaOrg\Contracts\PropertyValueContract|\Spatie\SchemaOrg\Contracts\PropertyValueContract[]|string|string[] $identifier
105
     *
106
     * @return static
107
     *
108
     * @see http://schema.org/identifier
109
     */
110
    public function identifier($identifier)
111
    {
112
        return $this->setProperty('identifier', $identifier);
113
    }
114
115
    /**
116
     * An image of the item. This can be a [[URL]] or a fully described
117
     * [[ImageObject]].
118
     *
119
     * @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|string|string[] $image
120
     *
121
     * @return static
122
     *
123
     * @see http://schema.org/image
124
     */
125
    public function image($image)
126
    {
127
        return $this->setProperty('image', $image);
128
    }
129
130
    /**
131
     * Indicates a page (or other CreativeWork) for which this thing is the main
132
     * entity being described. See [background
133
     * notes](/docs/datamodel.html#mainEntityBackground) for details.
134
     *
135
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $mainEntityOfPage
136
     *
137
     * @return static
138
     *
139
     * @see http://schema.org/mainEntityOfPage
140
     */
141
    public function mainEntityOfPage($mainEntityOfPage)
142
    {
143
        return $this->setProperty('mainEntityOfPage', $mainEntityOfPage);
144
    }
145
146
    /**
147
     * The name of the item.
148
     *
149
     * @param string|string[] $name
150
     *
151
     * @return static
152
     *
153
     * @see http://schema.org/name
154
     */
155
    public function name($name)
156
    {
157
        return $this->setProperty('name', $name);
158
    }
159
160
    /**
161
     * The date and time of obtaining the product.
162
     *
163
     * @param \DateTimeInterface|\DateTimeInterface[] $ownedFrom
164
     *
165
     * @return static
166
     *
167
     * @see http://schema.org/ownedFrom
168
     */
169
    public function ownedFrom($ownedFrom)
170
    {
171
        return $this->setProperty('ownedFrom', $ownedFrom);
172
    }
173
174
    /**
175
     * The date and time of giving up ownership on the product.
176
     *
177
     * @param \DateTimeInterface|\DateTimeInterface[] $ownedThrough
178
     *
179
     * @return static
180
     *
181
     * @see http://schema.org/ownedThrough
182
     */
183
    public function ownedThrough($ownedThrough)
184
    {
185
        return $this->setProperty('ownedThrough', $ownedThrough);
186
    }
187
188
    /**
189
     * Indicates a potential Action, which describes an idealized action in
190
     * which this thing would play an 'object' role.
191
     *
192
     * @param \Spatie\SchemaOrg\Contracts\ActionContract|\Spatie\SchemaOrg\Contracts\ActionContract[] $potentialAction
193
     *
194
     * @return static
195
     *
196
     * @see http://schema.org/potentialAction
197
     */
198
    public function potentialAction($potentialAction)
199
    {
200
        return $this->setProperty('potentialAction', $potentialAction);
201
    }
202
203
    /**
204
     * URL of a reference Web page that unambiguously indicates the item's
205
     * identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or
206
     * official website.
207
     *
208
     * @param string|string[] $sameAs
209
     *
210
     * @return static
211
     *
212
     * @see http://schema.org/sameAs
213
     */
214
    public function sameAs($sameAs)
215
    {
216
        return $this->setProperty('sameAs', $sameAs);
217
    }
218
219
    /**
220
     * A CreativeWork or Event about this Thing.
221
     *
222
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $subjectOf
223
     *
224
     * @return static
225
     *
226
     * @see http://schema.org/subjectOf
227
     */
228
    public function subjectOf($subjectOf)
229
    {
230
        return $this->setProperty('subjectOf', $subjectOf);
231
    }
232
233
    /**
234
     * The product that this structured value is referring to.
235
     *
236
     * @param \Spatie\SchemaOrg\Contracts\ProductContract|\Spatie\SchemaOrg\Contracts\ProductContract[]|\Spatie\SchemaOrg\Contracts\ServiceContract|\Spatie\SchemaOrg\Contracts\ServiceContract[] $typeOfGood
237
     *
238
     * @return static
239
     *
240
     * @see http://schema.org/typeOfGood
241
     */
242
    public function typeOfGood($typeOfGood)
243
    {
244
        return $this->setProperty('typeOfGood', $typeOfGood);
245
    }
246
247
    /**
248
     * URL of the item.
249
     *
250
     * @param string|string[] $url
251
     *
252
     * @return static
253
     *
254
     * @see http://schema.org/url
255
     */
256
    public function url($url)
257
    {
258
        return $this->setProperty('url', $url);
259
    }
260
261
}
262