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
4 changes: 3 additions & 1 deletion lib/Ajax/Imple/EditCaption.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

use Horde\Util\Variables;

/**
* Imple for performing AJAX setting of image captions.
*
Expand All @@ -12,7 +14,7 @@ class Ansel_Ajax_Imple_EditCaption extends Horde_Core_Ajax_Imple_InPlaceEditor
{
/**
*/
protected function _handleEdit(Horde_Variables $vars)
protected function _handleEdit(Variables|Horde_Variables $vars)
{
$as = $GLOBALS['injector']->getInstance('Ansel_Storage');
try {
Expand Down
4 changes: 3 additions & 1 deletion lib/Ajax/Imple/EditFaces.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

use Horde\Util\Variables;

/**
* Imple for performing Ajax discovery and editing of image faces.
*
Expand Down Expand Up @@ -35,7 +37,7 @@ protected function _attach($init)

/**
*/
protected function _handle(Horde_Variables $vars)
protected function _handle(Variables|Horde_Variables $vars)
{
global $injector, $prefs;

Expand Down
4 changes: 3 additions & 1 deletion lib/Ajax/Imple/ToggleGalleryActions.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

use Horde\Util\Variables;

/**
* Ansel_Ajax_Imple_ToggleGalleryActions:: class for performing Ajax setting of
* the gallery show_galleryactions user pref.
Expand All @@ -25,7 +27,7 @@ protected function _attach($init)
/**
* Noop.
*/
protected function _handle(Horde_Variables $vars)
protected function _handle(Variables|Horde_Variables $vars)
{
}

Expand Down
4 changes: 3 additions & 1 deletion lib/Ajax/Imple/ToggleOtherGalleries.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

use Horde\Util\Variables;

/**
* Ansel_Ajax_Imple_ToggleOtherGalleries:: class for performing Ajax setting of
* the gallery show_actions user pref.
Expand All @@ -25,7 +27,7 @@ protected function _attach($init)
/**
* Noop.
*/
protected function _handle(Horde_Variables $vars)
protected function _handle(Variables|Horde_Variables $vars)
{
}

Expand Down
Loading