1: <?php
 2: 
 3: /**
 4:  * This file is part of the Nette Framework (https://nette.org)
 5:  * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
 6:  */
 7: 
 8: namespace Nette;
 9: 
10: use Nette;
11: 
12: 
13: /**
14:  * The Nette Framework (https://nette.org)
15:  *
16:  * @author     David Grudl
17:  */
18: class Framework
19: {
20: 
21:     /** Nette Framework version identification */
22:     const NAME = 'Nette Framework',
23:         VERSION = '2.2.13',
24:         VERSION_ID = 20213,
25:         REVISION = 'released on 2016-04-13';
26: 
27: 
28:     /**
29:      * Static class - cannot be instantiated.
30:      */
31:     final public function __construct()
32:     {
33:         throw new StaticClassException;
34:     }
35: 
36: }
37: