mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-22 00:32:16 +02:00
20 lines
350 B
PHP
20 lines
350 B
PHP
<?php
|
|
|
|
namespace Laminas\Mail;
|
|
|
|
class Module
|
|
{
|
|
/**
|
|
* Retrieve laminas-mail package configuration for laminas-mvc context.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getConfig()
|
|
{
|
|
$provider = new ConfigProvider();
|
|
return [
|
|
'service_manager' => $provider->getDependencyConfig(),
|
|
];
|
|
}
|
|
}
|