1: <?php
2:
3: namespace Deimos\Helper;
4:
5: use Deimos\Helper\InterfaceHelper;
6:
7: abstract class AbstractHelper implements InterfaceHelper
8: {
9:
10: /**
11: * @var Helper
12: */
13: protected $helper;
14:
15: /**
16: * AbstractHelper constructor.
17: *
18: * @param $helper
19: */
20: public function __construct(Helper $helper)
21: {
22: $this->helper = $helper;
23: }
24:
25: }