|
<?php
|
|
|
|
namespace Modules\Tasks\Interfaces;
|
|
|
|
use Modules\Tasks\Factory;
|
|
use Modules\OtherModule\Factory as OtherModuleFactory;
|
|
|
|
interface IModulesProvider
|
|
{
|
|
public function getTasksModule(): Factory;
|
|
public function getOtherModule(): OtherModuleFactory;
|
|
}
|