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: * @package Nette
7: */
8:
9:
10:
11: /**
12: * The Nette Framework (https://nette.org)
13: *
14: * @author David Grudl
15: * @package Nette
16: */
17: class NFramework
18: {
19:
20: /** Nette Framework version identification */
21: const NAME = 'Nette Framework',
22: VERSION = '2.0.18',
23: VERSION_ID = 20018,
24: REVISION = 'released on 2014-12-22';
25:
26: /** @var bool set to TRUE if your host has disabled function ini_set */
27: public static $iAmUsingBadHost = FALSE;
28:
29:
30: /**
31: * Static class - cannot be instantiated.
32: */
33: final public function __construct()
34: {
35: throw new NStaticClassException;
36: }
37:
38: }
39: