Skip to content
This repository was archived by the owner on Dec 7, 2019. It is now read-only.

Implemented ModuleManager Feature interfaces #112

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
7 changes: 6 additions & 1 deletion src/ZFTool/Model/Skeleton.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,12 @@ public static function getModule($name)
<?php
namespace $name;

class Module
use Zend\ModuleManager\Feature\AutoloaderProviderInterface;
use Zend\ModuleManager\Feature\ConfigProviderInterface;

class Module implements
AutoloaderProviderInterface,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no need of stack interfaces. Can be placed inline

ConfigProviderInterface
{
public function getConfig()
{
Expand Down