Issues (439)

Security Analysis    no request data  

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

src/AssessAction.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Spatie\SchemaOrg;
4
5
use \Spatie\SchemaOrg\Contracts\AssessActionContract;
6
use \Spatie\SchemaOrg\Contracts\ActionContract;
7
use \Spatie\SchemaOrg\Contracts\ThingContract;
8
9
/**
10
 * The act of forming one's opinion, reaction or sentiment.
11
 *
12
 * @see http://schema.org/AssessAction
13
 *
14
 */
15 View Code Duplication
class AssessAction extends BaseType implements AssessActionContract, ActionContract, ThingContract
0 ignored issues
show
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...
16
{
17
    /**
18
     * Indicates the current disposition of the Action.
19
     *
20
     * @param \Spatie\SchemaOrg\Contracts\ActionStatusTypeContract|\Spatie\SchemaOrg\Contracts\ActionStatusTypeContract[] $actionStatus
21
     *
22
     * @return static
23
     *
24
     * @see http://schema.org/actionStatus
25
     */
26
    public function actionStatus($actionStatus)
27
    {
28
        return $this->setProperty('actionStatus', $actionStatus);
29
    }
30
31
    /**
32
     * An additional type for the item, typically used for adding more specific
33
     * types from external vocabularies in microdata syntax. This is a
34
     * relationship between something and a class that the thing is in. In RDFa
35
     * syntax, it is better to use the native RDFa syntax - the 'typeof'
36
     * attribute - for multiple types. Schema.org tools may have only weaker
37
     * understanding of extra types, in particular those defined externally.
38
     *
39
     * @param string|string[] $additionalType
40
     *
41
     * @return static
42
     *
43
     * @see http://schema.org/additionalType
44
     */
45
    public function additionalType($additionalType)
46
    {
47
        return $this->setProperty('additionalType', $additionalType);
48
    }
49
50
    /**
51
     * The direct performer or driver of the action (animate or inanimate). e.g.
52
     * *John* wrote a book.
53
     *
54
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $agent
55
     *
56
     * @return static
57
     *
58
     * @see http://schema.org/agent
59
     */
60
    public function agent($agent)
61
    {
62
        return $this->setProperty('agent', $agent);
63
    }
64
65
    /**
66
     * An alias for the item.
67
     *
68
     * @param string|string[] $alternateName
69
     *
70
     * @return static
71
     *
72
     * @see http://schema.org/alternateName
73
     */
74
    public function alternateName($alternateName)
75
    {
76
        return $this->setProperty('alternateName', $alternateName);
77
    }
78
79
    /**
80
     * A description of the item.
81
     *
82
     * @param string|string[] $description
83
     *
84
     * @return static
85
     *
86
     * @see http://schema.org/description
87
     */
88
    public function description($description)
89
    {
90
        return $this->setProperty('description', $description);
91
    }
92
93
    /**
94
     * A sub property of description. A short description of the item used to
95
     * disambiguate from other, similar items. Information from other properties
96
     * (in particular, name) may be necessary for the description to be useful
97
     * for disambiguation.
98
     *
99
     * @param string|string[] $disambiguatingDescription
100
     *
101
     * @return static
102
     *
103
     * @see http://schema.org/disambiguatingDescription
104
     */
105
    public function disambiguatingDescription($disambiguatingDescription)
106
    {
107
        return $this->setProperty('disambiguatingDescription', $disambiguatingDescription);
108
    }
109
110
    /**
111
     * The endTime of something. For a reserved event or service (e.g.
112
     * FoodEstablishmentReservation), the time that it is expected to end. For
113
     * actions that span a period of time, when the action was performed. e.g.
114
     * John wrote a book from January to *December*. For media, including audio
115
     * and video, it's the time offset of the end of a clip within a larger
116
     * file.
117
     * 
118
     * Note that Event uses startDate/endDate instead of startTime/endTime, even
119
     * when describing dates with times. This situation may be clarified in
120
     * future revisions.
121
     *
122
     * @param \DateTimeInterface|\DateTimeInterface[] $endTime
123
     *
124
     * @return static
125
     *
126
     * @see http://schema.org/endTime
127
     */
128
    public function endTime($endTime)
129
    {
130
        return $this->setProperty('endTime', $endTime);
131
    }
132
133
    /**
134
     * For failed actions, more information on the cause of the failure.
135
     *
136
     * @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $error
137
     *
138
     * @return static
139
     *
140
     * @see http://schema.org/error
141
     */
142
    public function error($error)
143
    {
144
        return $this->setProperty('error', $error);
145
    }
146
147
    /**
148
     * The identifier property represents any kind of identifier for any kind of
149
     * [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides
150
     * dedicated properties for representing many of these, either as textual
151
     * strings or as URL (URI) links. See [background
152
     * notes](/docs/datamodel.html#identifierBg) for more details.
153
     *
154
     * @param \Spatie\SchemaOrg\Contracts\PropertyValueContract|\Spatie\SchemaOrg\Contracts\PropertyValueContract[]|string|string[] $identifier
155
     *
156
     * @return static
157
     *
158
     * @see http://schema.org/identifier
159
     */
160
    public function identifier($identifier)
161
    {
162
        return $this->setProperty('identifier', $identifier);
163
    }
164
165
    /**
166
     * An image of the item. This can be a [[URL]] or a fully described
167
     * [[ImageObject]].
168
     *
169
     * @param \Spatie\SchemaOrg\Contracts\ImageObjectContract|\Spatie\SchemaOrg\Contracts\ImageObjectContract[]|string|string[] $image
170
     *
171
     * @return static
172
     *
173
     * @see http://schema.org/image
174
     */
175
    public function image($image)
176
    {
177
        return $this->setProperty('image', $image);
178
    }
179
180
    /**
181
     * The object that helped the agent perform the action. e.g. John wrote a
182
     * book with *a pen*.
183
     *
184
     * @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $instrument
185
     *
186
     * @return static
187
     *
188
     * @see http://schema.org/instrument
189
     */
190
    public function instrument($instrument)
191
    {
192
        return $this->setProperty('instrument', $instrument);
193
    }
194
195
    /**
196
     * The location of for example where the event is happening, an organization
197
     * is located, or where an action takes place.
198
     *
199
     * @param \Spatie\SchemaOrg\Contracts\PlaceContract|\Spatie\SchemaOrg\Contracts\PlaceContract[]|\Spatie\SchemaOrg\Contracts\PostalAddressContract|\Spatie\SchemaOrg\Contracts\PostalAddressContract[]|string|string[] $location
200
     *
201
     * @return static
202
     *
203
     * @see http://schema.org/location
204
     */
205
    public function location($location)
206
    {
207
        return $this->setProperty('location', $location);
208
    }
209
210
    /**
211
     * Indicates a page (or other CreativeWork) for which this thing is the main
212
     * entity being described. See [background
213
     * notes](/docs/datamodel.html#mainEntityBackground) for details.
214
     *
215
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|string|string[] $mainEntityOfPage
216
     *
217
     * @return static
218
     *
219
     * @see http://schema.org/mainEntityOfPage
220
     */
221
    public function mainEntityOfPage($mainEntityOfPage)
222
    {
223
        return $this->setProperty('mainEntityOfPage', $mainEntityOfPage);
224
    }
225
226
    /**
227
     * The name of the item.
228
     *
229
     * @param string|string[] $name
230
     *
231
     * @return static
232
     *
233
     * @see http://schema.org/name
234
     */
235
    public function name($name)
236
    {
237
        return $this->setProperty('name', $name);
238
    }
239
240
    /**
241
     * The object upon which the action is carried out, whose state is kept
242
     * intact or changed. Also known as the semantic roles patient, affected or
243
     * undergoer (which change their state) or theme (which doesn't). e.g. John
244
     * read *a book*.
245
     *
246
     * @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $object
247
     *
248
     * @return static
249
     *
250
     * @see http://schema.org/object
251
     */
252
    public function object($object)
253
    {
254
        return $this->setProperty('object', $object);
255
    }
256
257
    /**
258
     * Other co-agents that participated in the action indirectly. e.g. John
259
     * wrote a book with *Steve*.
260
     *
261
     * @param \Spatie\SchemaOrg\Contracts\OrganizationContract|\Spatie\SchemaOrg\Contracts\OrganizationContract[]|\Spatie\SchemaOrg\Contracts\PersonContract|\Spatie\SchemaOrg\Contracts\PersonContract[] $participant
262
     *
263
     * @return static
264
     *
265
     * @see http://schema.org/participant
266
     */
267
    public function participant($participant)
268
    {
269
        return $this->setProperty('participant', $participant);
270
    }
271
272
    /**
273
     * Indicates a potential Action, which describes an idealized action in
274
     * which this thing would play an 'object' role.
275
     *
276
     * @param \Spatie\SchemaOrg\Contracts\ActionContract|\Spatie\SchemaOrg\Contracts\ActionContract[] $potentialAction
277
     *
278
     * @return static
279
     *
280
     * @see http://schema.org/potentialAction
281
     */
282
    public function potentialAction($potentialAction)
283
    {
284
        return $this->setProperty('potentialAction', $potentialAction);
285
    }
286
287
    /**
288
     * The result produced in the action. e.g. John wrote *a book*.
289
     *
290
     * @param \Spatie\SchemaOrg\Contracts\ThingContract|\Spatie\SchemaOrg\Contracts\ThingContract[] $result
291
     *
292
     * @return static
293
     *
294
     * @see http://schema.org/result
295
     */
296
    public function result($result)
297
    {
298
        return $this->setProperty('result', $result);
299
    }
300
301
    /**
302
     * URL of a reference Web page that unambiguously indicates the item's
303
     * identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or
304
     * official website.
305
     *
306
     * @param string|string[] $sameAs
307
     *
308
     * @return static
309
     *
310
     * @see http://schema.org/sameAs
311
     */
312
    public function sameAs($sameAs)
313
    {
314
        return $this->setProperty('sameAs', $sameAs);
315
    }
316
317
    /**
318
     * The startTime of something. For a reserved event or service (e.g.
319
     * FoodEstablishmentReservation), the time that it is expected to start. For
320
     * actions that span a period of time, when the action was performed. e.g.
321
     * John wrote a book from *January* to December. For media, including audio
322
     * and video, it's the time offset of the start of a clip within a larger
323
     * file.
324
     * 
325
     * Note that Event uses startDate/endDate instead of startTime/endTime, even
326
     * when describing dates with times. This situation may be clarified in
327
     * future revisions.
328
     *
329
     * @param \DateTimeInterface|\DateTimeInterface[] $startTime
330
     *
331
     * @return static
332
     *
333
     * @see http://schema.org/startTime
334
     */
335
    public function startTime($startTime)
336
    {
337
        return $this->setProperty('startTime', $startTime);
338
    }
339
340
    /**
341
     * A CreativeWork or Event about this Thing.
342
     *
343
     * @param \Spatie\SchemaOrg\Contracts\CreativeWorkContract|\Spatie\SchemaOrg\Contracts\CreativeWorkContract[]|\Spatie\SchemaOrg\Contracts\EventContract|\Spatie\SchemaOrg\Contracts\EventContract[] $subjectOf
344
     *
345
     * @return static
346
     *
347
     * @see http://schema.org/subjectOf
348
     */
349
    public function subjectOf($subjectOf)
350
    {
351
        return $this->setProperty('subjectOf', $subjectOf);
352
    }
353
354
    /**
355
     * Indicates a target EntryPoint for an Action.
356
     *
357
     * @param \Spatie\SchemaOrg\Contracts\EntryPointContract|\Spatie\SchemaOrg\Contracts\EntryPointContract[] $target
358
     *
359
     * @return static
360
     *
361
     * @see http://schema.org/target
362
     */
363
    public function target($target)
364
    {
365
        return $this->setProperty('target', $target);
366
    }
367
368
    /**
369
     * URL of the item.
370
     *
371
     * @param string|string[] $url
372
     *
373
     * @return static
374
     *
375
     * @see http://schema.org/url
376
     */
377
    public function url($url)
378
    {
379
        return $this->setProperty('url', $url);
380
    }
381
382
}
383