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