-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlameableInterface.php
63 lines (52 loc) · 1.23 KB
/
BlameableInterface.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
<?php
declare(strict_types=1);
/*
* This file is part of the Stinger Soft Entity Contracts.
*
* (c) Oliver Kotte <[email protected]>
* (c) Florian Meyer <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace StingerSoft\Contracts\Entity;
use Symfony\Component\Security\Core\User\UserInterface;
/**
* Interface for blameable entities
*/
interface BlameableInterface {
/**
*
* @param string|UserInterface the user representation
*/
public function setCreatedBy($user): void;
/**
*
* @param string|UserInterface the user representation
*/
public function setUpdatedBy($user): void;
/**
*
* @param string|UserInterface the user representation
*/
public function setDeletedBy($user): void;
/**
*
* @return string|UserInterface the user who created entity
*/
public function getCreatedBy();
/**
*
* @return string|UserInterface the user who last updated entity
*/
public function getUpdatedBy();
/**
*
* @return string|UserInterface the user who deleted this entity
*/
public function getDeletedBy();
/**
* @return bool
*/
public function isBlameable(): bool;
}