Implement a basic controller. DI looks to be working.
[rock.divinelegy.git] / Services / BarInterface.php
1 <?php
2 /**
3 * @package DIExample
4 * @copyright 2013 Internet Brands, Inc. All Rights Reserved.
5 */
6 namespace Domain\Entities;
7
8 /**
9 * BarInterface
10 *
11 * @author Michael Funk <mfunk@internetbrands.com>
12 */
13 interface BarInterface
14 {
15
16 /**
17 * returnMe
18 *
19 * @return string
20 */
21 public function returnMe();
22 }