We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8be2f92 commit fa9a8f0Copy full SHA for fa9a8f0
lib/Bitbucket/API/Http/Listener/ListenerInterface.php
@@ -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