Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
10 | public function execute(Board $board, string $alias, array $operation) |
||
11 | { |
||
12 | list($newX, $newY) = $board->getActorNextMove($alias); |
||
13 | $type = $board->getField($newX, $newY); |
||
14 | $board->setVariable($operation['variable'], $type); |
||
15 | $board->debug(sprintf('Scan Field[%s,%s] Type[%s]', $newX, $newY, $type)); |
||
16 | } |
||
17 | |||
28 |