@@ -1,4 +1,4 @@ |
||
| 1 | -<?php echo '<?php' , PHP_EOL; ?> |
|
| 1 | +<?php echo '<?php', PHP_EOL; ?> |
|
| 2 | 2 | |
| 3 | 3 | use Tarantool\Mapper\Contracts\Manager; |
| 4 | 4 | use Tarantool\Mapper\Contracts\Migration; |
@@ -91,7 +91,7 @@ |
||
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
| 94 | - * @return Entity |
|
| 94 | + * @return boolean |
|
| 95 | 95 | */ |
| 96 | 96 | public function knows(Contracts\Entity $entity) |
| 97 | 97 | { |
@@ -178,7 +178,7 @@ |
||
| 178 | 178 | } |
| 179 | 179 | try { |
| 180 | 180 | $this->type->getSpace()->update($entity->getId(), $operations); |
| 181 | - } catch(\Exception $e) { |
|
| 181 | + } catch (\Exception $e) { |
|
| 182 | 182 | $this->type->getSpace()->delete([$entity->getId()]); |
| 183 | 183 | $tuple = $this->type->getCompleteTuple($entity->toArray()); |
| 184 | 184 | $this->type->getSpace()->insert($tuple); |
@@ -139,6 +139,9 @@ |
||
| 139 | 139 | return $this; |
| 140 | 140 | } |
| 141 | 141 | |
| 142 | + /** |
|
| 143 | + * @param string $property |
|
| 144 | + */ |
|
| 142 | 145 | public function reference(Contracts\Type $foreign, $property = null) |
| 143 | 146 | { |
| 144 | 147 | if (!$property) { |