Open Journal Systems  3.3.0
RenderingState.php
1 <?php
2 /*
3  * citeproc-php
4  *
5  * @link http://github.com/seboettg/citeproc-php for the source repository
6  * @copyright Copyright (c) 2017 Sebastian Böttger.
7  * @license https://opensource.org/licenses/MIT
8  */
9 
10 namespace Seboettg\CiteProc;
11 
13 
27 class RenderingState extends Enum
28 {
29  const RENDERING = "rendering";
30 
31  const SORTING = "sorting";
32 
33  const SUBSTITUTION = "substitution";
34 }
MyCLabs\Enum\Enum
Definition: Enum.php:21
Seboettg\CiteProc
Definition: CiteProc.php:10
Seboettg\CiteProc\RenderingState\SORTING
const SORTING
Definition: RenderingState.php:31
Seboettg\CiteProc\RenderingState
Definition: RenderingState.php:27
Seboettg\CiteProc\RenderingState\SUBSTITUTION
const SUBSTITUTION
Definition: RenderingState.php:33
Seboettg\CiteProc\RenderingState\RENDERING
const RENDERING
Definition: RenderingState.php:29