CreatesApplication.php 555 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace Tests;
  3. trait CreatesApplication
  4. {
  5. /**
  6. * Creates the application.
  7. *
  8. * @return todo
  9. */
  10. public static function createApplication()
  11. {
  12. if (!defined('INSTALLDIR')) {
  13. define('INSTALLDIR', __DIR__ . '/../../../');
  14. }
  15. if (!defined('GNUSOCIAL')) {
  16. define('GNUSOCIAL', true);
  17. }
  18. if (!defined('STATUSNET')) {
  19. define('STATUSNET', true); // compatibility
  20. }
  21. require INSTALLDIR . '/lib/common.php';
  22. return true;
  23. }
  24. }