diff --git a/Nette/Framework.php b/Nette/Framework.php index ba8aee1d21..ff666d7d69 100644 --- a/Nette/Framework.php +++ b/Nette/Framework.php @@ -11,26 +11,14 @@ /** - * The Nette Framework (http://nette.org) - * - * @author David Grudl + * Framework version. */ class Framework { - /** Nette Framework version identification */ const NAME = 'Nette Framework', VERSION = '2.3-dev', VERSION_ID = 20300, REVISION = '$WCREV$ released on $WCDATE$'; - - /** - * Static class - cannot be instantiated. - */ - final public function __construct() - { - throw new StaticClassException; - } - }