Skip to content

Commit

Permalink
Missed this one
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Dec 17, 2023
1 parent da985b8 commit e95eee9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Internal/MysqlConnectionResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
namespace Amp\Mysql\Internal;

use Amp\DeferredFuture;
use Amp\ForbidCloning;
use Amp\ForbidSerialization;
use Amp\Future;
use Amp\Mysql\MysqlColumnDefinition;
use Amp\Mysql\MysqlResult;
Expand All @@ -16,6 +18,9 @@
*/
final class MysqlConnectionResult implements MysqlResult, \IteratorAggregate
{
use ForbidCloning;
use ForbidSerialization;

private readonly MysqlResultProxy $result;

private readonly \Generator $generator;
Expand Down

0 comments on commit e95eee9

Please sign in to comment.