Skip to content

Commit

Permalink
Move MysqlEncodedValue to be internal
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Mar 1, 2024
1 parent 2df3f88 commit ec35424
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/Internal/ConnectionProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@
use Amp\Mysql\MysqlColumnDefinition;
use Amp\Mysql\MysqlConfig;
use Amp\Mysql\MysqlDataType;
use Amp\Mysql\MysqlEncodedValue;
use Amp\Mysql\MysqlResult;
use Amp\Parser\Parser;
use Amp\Socket\Socket;
use Amp\Sql\SqlConnectionException;
use Amp\Sql\SqlQueryError;
use Amp\Sql\SqlException;
use Amp\Sql\SqlQueryError;
use Amp\Sql\SqlTransientResource;
use Revolt\EventLoop;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<?php declare(strict_types=1);

namespace Amp\Mysql;
namespace Amp\Mysql\Internal;

use Amp\Mysql\MysqlDataType;

/** @internal */
final class MysqlEncodedValue
{
public static function fromValue(mixed $param): self
Expand Down
2 changes: 1 addition & 1 deletion src/MysqlConnectionPool.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace Amp\Mysql;

use Amp\Sql\Common\SqlCommonConnectionPool;
use Amp\Sql\SqlResult;
use Amp\Sql\SqlConnector;
use Amp\Sql\SqlResult;
use Amp\Sql\SqlStatement;
use Amp\Sql\SqlTransaction;

Expand Down

0 comments on commit ec35424

Please sign in to comment.