src/Service/Game.php 1 location
|
@@ 64-70 (lines=7) @@
|
| 61 |
|
$this->serviceLocator = $locator; |
| 62 |
|
} |
| 63 |
|
|
| 64 |
|
public function getEventManager() { |
| 65 |
|
if (null === $this->event) { |
| 66 |
|
$this->event = new EventManager($this->serviceLocator->get('SharedEventManager'), [get_class($this)]); |
| 67 |
|
} |
| 68 |
|
|
| 69 |
|
return $this->event; |
| 70 |
|
} |
| 71 |
|
|
| 72 |
|
public function getGameUserPath($game, $user) |
| 73 |
|
{ |
src/Service/PrizeCategory.php 1 location
|
@@ 45-51 (lines=7) @@
|
| 42 |
|
$this->serviceLocator = $locator; |
| 43 |
|
} |
| 44 |
|
|
| 45 |
|
public function getEventManager() { |
| 46 |
|
if (null === $this->event) { |
| 47 |
|
$this->event = new EventManager($this->serviceLocator->get('SharedEventManager'), [get_class($this)]); |
| 48 |
|
} |
| 49 |
|
|
| 50 |
|
return $this->event; |
| 51 |
|
} |
| 52 |
|
|
| 53 |
|
/** |
| 54 |
|
* |
src/Form/Admin/Game.php 1 location
|
@@ 850-858 (lines=9) @@
|
| 847 |
|
return $categories; |
| 848 |
|
} |
| 849 |
|
|
| 850 |
|
public function getEventManager() |
| 851 |
|
{ |
| 852 |
|
if ($this->event === NULL) { |
| 853 |
|
$this->event = new EventManager( |
| 854 |
|
$this->getServiceManager()->get('SharedEventManager'), [get_class($this)] |
| 855 |
|
); |
| 856 |
|
} |
| 857 |
|
return $this->event; |
| 858 |
|
} |
| 859 |
|
|
| 860 |
|
/** |
| 861 |
|
* Retrieve service manager instance |