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