Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .horde.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,9 @@ dependencies:
composer:
horde/nag: ^5
horde/turba: ^5
autoload:
classmap:
- lib/
psr-4:
Horde\Hermes\: /src
vendor: horde
4 changes: 3 additions & 1 deletion lib/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
* @package Hermes
*/

use Horde\Util\Variables;

if (!defined('HERMES_BASE')) {
define('HERMES_BASE', __DIR__. '/..');
}
Expand Down Expand Up @@ -63,7 +65,7 @@ protected function _init()
}
}

public function download(Horde_Variables $vars)
public function download(Variables|Horde_Variables $vars)
{
global $notification, $injector;

Expand Down
29 changes: 29 additions & 0 deletions src/Hermes.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php
/**
* Copyright 2013-2026 The Horde Project (http://www.horde.org/)
*
* See the enclosed file LICENSE for license information (BSD-2-Clause). If you
* did not receive this file, see http://www.horde.org/licenses/bsdl.php.
*
* @author Michael J Rubinsky <mrubinsk@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/bsdl.php BSD-2-Clause
* @package Hermes
*/

declare(strict_types=1);

namespace Horde\Hermes;

/**
* Hermes application class.
*
* @author Michael J Rubinsky <mrubinsk@horde.org>
* @category Horde
* @copyright 2013-2026 The Horde Project
* @license http://www.horde.org/licenses/bsdl.php BSD-2-Clause
* @package Hermes
*/
class Hermes
{
}