Skip to content

Commit

Permalink
Merge pull request #1 from jeyroik/development
Browse files Browse the repository at this point in the history
Added IDispatcherWrapper
  • Loading branch information
jeyroik authored May 15, 2020
2 parents 650a714 + 576fa1b commit e06009d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/components/TDispatcherWrapper.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php
namespace extas\components;

/**
* Class TDispatcherWrapper
*
* @package extas\components
* @author jeyroik@gmail.com
*/
trait TDispatcherWrapper
{
use THasName;
use THasDescription;
use THasClass;
}
12 changes: 12 additions & 0 deletions src/interfaces/IDispatcherWrapper.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
namespace extas\interfaces;

/**
* Interface IDispatcherWrapper
*
* @package extas\interfaces
* @author jeyroik@gmail.com
*/
interface IDispatcherWrapper extends IHasName, IHasDescription, IHasClass
{
}

0 comments on commit e06009d

Please sign in to comment.