1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (https://nette.org)
5: * Copyright (c) 2004 David Grudl (http://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.0.18',
24: VERSION_ID = 20018,
25: REVISION = 'released on 2014-12-22';
26:
27: /** @var bool set to TRUE if your host has disabled function ini_set */
28: public static $iAmUsingBadHost = FALSE;
29:
30:
31: /**
32: * Static class - cannot be instantiated.
33: */
34: final public function __construct()
35: {
36: throw new StaticClassException;
37: }
38:
39: }
40: