PageRenderTime 158ms CodeModel.GetById 53ms RepoModel.GetById 0ms app.codeStats 0ms

/Nette/Forms/INamingContainer.php

https://github.com/DocX/nette
PHP | 37 lines | 5 code | 8 blank | 24 comment | 0 complexity | c35671d050c7b5c67c7ce726278d65ea MD5 | raw file
Possible License(s): BSD-3-Clause
  1. <?php
  2. /**
  3. * Nette Framework
  4. *
  5. * Copyright (c) 2004, 2009 David Grudl (http://davidgrudl.com)
  6. *
  7. * This source file is subject to the "Nette license" that is bundled
  8. * with this package in the file license.txt.
  9. *
  10. * For more information please see http://nettephp.com
  11. *
  12. * @copyright Copyright (c) 2004, 2009 David Grudl
  13. * @license http://nettephp.com/license Nette license
  14. * @link http://nettephp.com
  15. * @category Nette
  16. * @package Nette\Forms
  17. */
  18. /*namespace Nette\Forms;*/
  19. require_once dirname(__FILE__) . '/../IComponentContainer.php';
  20. /**
  21. * Identifies a container that creates a new namespace for form's control hierarchy.
  22. *
  23. * @author David Grudl
  24. * @copyright Copyright (c) 2004, 2009 David Grudl
  25. * @package Nette\Forms
  26. */
  27. interface INamingContainer extends /*Nette\*/IComponentContainer
  28. {
  29. }