src/PlaygroundGame/Entity/PrizeCategory.php 1 location
|
@@ 240-242 (lines=3) @@
|
| 237 |
|
$this->identifier = $data['identifier']; |
| 238 |
|
} |
| 239 |
|
|
| 240 |
|
if (isset($data['active']) && $data['active'] !== null) { |
| 241 |
|
$this->active = $data['active']; |
| 242 |
|
} |
| 243 |
|
|
| 244 |
|
if (isset($data['picto']) && $data['picto'] !== null) { |
| 245 |
|
$this->picto = $data['picto']; |
src/PlaygroundGame/Entity/Game.php 1 location
|
@@ 1591-1593 (lines=3) @@
|
| 1588 |
|
$this->secondImage = $data['secondImage']; |
| 1589 |
|
} |
| 1590 |
|
|
| 1591 |
|
if (isset($data['active']) && $data['active'] !== null) { |
| 1592 |
|
$this->active = $data['active']; |
| 1593 |
|
} |
| 1594 |
|
|
| 1595 |
|
$this->layout = (isset($data['layout'])) ? $data['layout'] : null; |
| 1596 |
|
$this->stylesheet = (isset($data['stylesheet'])) ? $data['stylesheet'] : null; |