Skip to content

Commit fa9a8f0

Browse files
committed
added ListenerInterface
1 parent 8be2f92 commit fa9a8f0

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php
2+
3+
/**
4+
* This file is part of the bitbucket-api package.
5+
*
6+
* (c) Alexandru G. <alex@gentle.ro>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Bitbucket\API\Http\Listener;
13+
14+
use Buzz\Listener\ListenerInterface as BaseInterface;
15+
16+
/**
17+
* @author Alexandru G. <alex@gentle.ro>
18+
*/
19+
interface ListenerInterface extends BaseInterface
20+
{
21+
/**
22+
* Get listener (unique) name
23+
*
24+
* @access public
25+
* @return string
26+
*/
27+
public function getName();
28+
}

0 commit comments

Comments
 (0)