PersistenceAction.php
1 <?php
2 /**
3  * wCMF - wemove Content Management Framework
4  * Copyright (C) 2005-2020 wemove digital solutions GmbH
5  *
6  * Licensed under the terms of the MIT License.
7  *
8  * See the LICENSE file distributed with this work for
9  * additional information.
10  */
11 namespace wcmf\lib\persistence;
12 
13 /**
14  * PersistenceAction values are used to define actions on PersistentObject
15  * instances.
16  *
17  * @author ingo herwig <ingo@wemove.com>
18  */
20 
21  const CREATE = 'create';
22  const READ = 'read';
23  const UPDATE = 'update';
24  const DELETE = 'delete';
25 }
26 ?>
Persistence layer related interfaces and classes.
Definition: namespaces.php:42
PersistenceAction values are used to define actions on PersistentObject instances.