-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathEventInterface.php
86 lines (77 loc) · 2.48 KB
/
EventInterface.php
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
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.6.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Event;
/**
* Represents the transport class of events across the system. It receives a name, subject and an optional
* payload. The name can be any string that uniquely identifies the event across the application, while the subject
* represents the object that the event applies to.
*/
interface EventInterface
{
/**
* Returns the name of this event. This is usually used as the event identifier.
*
* @return string
*/
public function getName(): string;
/**
* Returns the subject of this event.
*
* @return object
*/
public function getSubject();
/**
* Stops the event from being used anymore.
*
* @return void
*/
public function stopPropagation(): void;
/**
* Checks if the event is stopped.
*
* @return bool True if the event is stopped
*/
public function isStopped(): bool;
/**
* The result value of the event listeners.
*
* @return mixed
*/
public function getResult();
/**
* Listeners can attach a result value to the event.
*
* @param mixed $value The value to set.
* @return $this
*/
public function setResult($value = null);
/**
* Accesses the event data/payload.
*
* @param string|null $key The data payload element to return, or null to return all data.
* @return array|mixed|null The data payload if $key is null, or the data value for the given $key.
* If the $key does not exist a null value is returned.
*/
public function getData(?string $key = null);
/**
* Assigns a value to the data/payload of this event.
*
* @param array|string $key An array will replace all payload data, and a key will set just that array item.
* @param mixed $value The value to set.
* @return $this
*/
public function setData($key, $value = null);
}