Files
server/usr/share/psa-horde/kronolith/lib/Factory/Shares.php
2026-01-07 20:52:11 +01:00

23 lines
514 B
PHP

<?php
/**
* Horde_Injector based factory for the Kronolith share driver.
*
* @author Michael Slusarz <slusarz@horde.org>
* @category Horde
* @package Kronolith
*/
class Kronolith_Factory_Shares extends Horde_Core_Factory_Injector
{
/**
* Return the driver instance.
*
* @return Horde_Core_Share_Driver
* @throws Horde_Exception
*/
public function create(Horde_Injector $injector)
{
return $injector->getInstance('Horde_Core_Factory_Share')->create();
}
}