Skip to content

Commit 2edd121

Browse files
committed
Fix RecordsHelperFactory.
1 parent eaa9413 commit 2edd121

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

module/VuFind/config/module.config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@
500500
'VuFind\ILS\Driver\PluginManager' => 'VuFind\ServiceManager\AbstractPluginManagerFactory',
501501
'VuFind\ILS\Logic\AvailabilityStatusManager' => 'Laminas\ServiceManager\Factory\InvokableFactory',
502502
'VuFind\ILS\Logic\Holds' => 'VuFind\ILS\Logic\LogicFactory',
503-
'VuFind\ILS\Logic\RecordsHelper' => 'VuFind\Controller\Plugin\IlsRecordsFactory',
503+
'VuFind\ILS\Logic\RecordsHelper' => 'VuFind\ILS\Logic\RecordsHelperFactory',
504504
'VuFind\ILS\Logic\RenewalsHelper' => 'Laminas\ServiceManager\Factory\InvokableFactory',
505505
'VuFind\ILS\Logic\TitleHolds' => 'VuFind\ILS\Logic\LogicFactory',
506506
'VuFind\ILS\HoldSettings' => 'VuFind\ILS\HoldSettingsFactory',

module/VuFind/src/VuFind/Controller/Plugin/IlsRecordsFactory.php renamed to module/VuFind/src/VuFind/ILS/Logic/RecordsHelperFactory.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

33
/**
4-
* Factory for IlsRecords controller plugin.
4+
* Factory for RecordsHelper.
55
*
66
* PHP version 8
77
*
8-
* Copyright (C) Villanova University 2019.
8+
* Copyright (C) Villanova University 2019-2025.
99
*
1010
* This program is free software; you can redistribute it and/or modify
1111
* it under the terms of the GNU General Public License version 2,
@@ -21,13 +21,13 @@
2121
* <https://www.gnu.org/licenses/>.
2222
*
2323
* @category VuFind
24-
* @package Controller_Plugins
24+
* @package ILS_Logic
2525
* @author Demian Katz <demian.katz@villanova.edu>
2626
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
2727
* @link https://vufind.org Main Page
2828
*/
2929

30-
namespace VuFind\Controller\Plugin;
30+
namespace VuFind\ILS\Logic;
3131

3232
use Laminas\ServiceManager\Exception\ServiceNotCreatedException;
3333
use Laminas\ServiceManager\Exception\ServiceNotFoundException;
@@ -36,15 +36,15 @@
3636
use Psr\Container\ContainerInterface;
3737

3838
/**
39-
* Factory for IlsRecords controller plugin.
39+
* Factory for RecordsHelper.
4040
*
4141
* @category VuFind
42-
* @package Controller_Plugins
42+
* @package ILS_Logic
4343
* @author Demian Katz <demian.katz@villanova.edu>
4444
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
4545
* @link https://vufind.org/wiki/development:plugins:recommendation_modules Wiki
4646
*/
47-
class IlsRecordsFactory implements FactoryInterface
47+
class RecordsHelperFactory implements FactoryInterface
4848
{
4949
/**
5050
* Create an object

0 commit comments

Comments
 (0)