The property Ray\AuraSqlModule\Annotation\Transactional::$value has been deprecated.
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be
removed from the class and what other property to use instead.
Loading history...
38
1
return (new PropTransaction)($invocation, $transactional);
39
}
40
2
if (! $this->pdo instanceof ExtendedPdoInterface) {
41
return $invocation->proceed();
42
}
43
try {
44
2
$this->pdo->beginTransaction();
45
2
$result = $invocation->proceed();
46
1
$this->pdo->commit();
47
1
} catch (\PDOException $e) {
48
1
$this->pdo->rollBack();
49
1
throw new RollbackException($e->getMessage(), 0, $e);
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.